]> git.sur5r.net Git - cc65/blobdiff - src/ld65/mapfile.h
Corrected indentation - no code change.
[cc65] / src / ld65 / mapfile.h
index 91a50f28dd121eef0802fa83211db3aec034a377..f1016aca73277a46db9ae2c6c2b341d75ad7a54f 100644 (file)
@@ -6,9 +6,9 @@
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 1998-2001 Ullrich von Bassewitz                                       */
-/*               Wacholderweg 14                                             */
-/*               D-70597 Stuttgart                                           */
+/* (C) 1998-2005 Ullrich von Bassewitz                                       */
+/*               Römerstrasse 52                                             */
+/*               D-70794 Filderstadt                                         */
 /* EMail:        uz@cc65.org                                                 */
 /*                                                                           */
 /*                                                                           */
 
 
 
-#include <stdio.h>
+/*****************************************************************************/
+/*                                  Data                                    */
+/*****************************************************************************/
+
+
+
+/* Constants that may be used as arguments for CreateMapFile */
+enum {
+    LONG_MAPFILE,
+    SHORT_MAPFILE
+};
 
 
 
 /*****************************************************************************/
-/*                                  Code                                    */
+/*                                  Code                                    */
 /*****************************************************************************/
 
 
 
-void CreateMapFile (void);
-/* Create a map file */
+void CreateMapFile (int ShortMap);
+/* Create a map file. If ShortMap is true, only the segment lists are
+ * generated, not the import/export lists.
+ */
 
 void CreateLabelFile (void);
 /* Create a label file */
 
-void CreateDbgFile (void);
-/* Create a debug info file */
-
 
 
 /* End of mapfile.h */