diff tools/gfxconv.c @ 1340:1f8687c61891

Add some comments.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 22 Aug 2017 16:54:41 +0300
parents 62ef5cc2b475
children fcaf04cb0830
line wrap: on
line diff
--- a/tools/gfxconv.c	Tue Aug 22 15:01:23 2017 +0300
+++ b/tools/gfxconv.c	Tue Aug 22 16:54:41 2017 +0300
@@ -46,11 +46,11 @@
 
 typedef struct
 {
-    char *name;
-    char *fext;
-    BOOL in, out;
-    int format;
-    int subformat;
+    char *name;       // Descriptive name of the format
+    char *fext;       // File extension
+    BOOL in, out;     // Can read/write?
+    int format;       // Format identifier
+    int subformat;    // Subformat identifier
 } DMConvFormat;