]> git.sur5r.net Git - cc65/blobdiff - src/ld65/mapfile.h
Added space after function name.
[cc65] / src / ld65 / mapfile.h
index b4cc31f18e95b3cedccae5bac5677a7682a5d75e..4a1d4d7777b85ce07bf80d62ba683b4c2e05cdfe 100644 (file)
@@ -1,13 +1,13 @@
 /*****************************************************************************/
 /*                                                                           */
-/*                                mapfile.h                                 */
+/*                                 mapfile.h                                 */
 /*                                                                           */
-/*                  Map file creation for the ld65 linker                   */
+/*                   Map file creation for the ld65 linker                   */
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 1998-2003 Ullrich von Bassewitz                                       */
-/*               Römerstrasse 52                                             */
+/* (C) 1998-2005 Ullrich von Bassewitz                                       */
+/*               Roemerstrasse 52                                            */
 /*               D-70794 Filderstadt                                         */
 /* EMail:        uz@cc65.org                                                 */
 /*                                                                           */
 
 
 /*****************************************************************************/
-/*                                  Code                                    */
+/*                                   Data                                    */
 /*****************************************************************************/
 
 
 
-void CreateMapFile (void);
-/* Create a map file */
+/* Constants that may be used as arguments for CreateMapFile */
+enum {
+    LONG_MAPFILE,
+    SHORT_MAPFILE
+};
+
+
+
+/*****************************************************************************/
+/*                                   Code                                    */
+/*****************************************************************************/
+
+
+
+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 */
@@ -55,6 +71,3 @@ void CreateLabelFile (void);
 /* End of mapfile.h */
 
 #endif
-
-
-