]> git.sur5r.net Git - cc65/blobdiff - src/ca65/listing.h
The line counter got confused for lines with more than 256 chars. Removed the
[cc65] / src / ca65 / listing.h
index 01df0c3609b0c1a32b97cbbb9d319d4079de2161..33debd5246aa839a036ee716eb39832405b3008c 100644 (file)
@@ -6,10 +6,10 @@
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 2000-2003 Ullrich von Bassewitz                                       */
-/*               Römerstrasse 52                                             */
-/*               D-70794 Filderstadt                                         */
-/* EMail:        uz@cc65.org                                                 */
+/* (C) 2000-2011, Ullrich von Bassewitz                                      */
+/*                Roemerstrasse 52                                           */
+/*                D-70794 Filderstadt                                        */
+/* EMail:         uz@cc65.org                                                */
 /*                                                                           */
 /*                                                                           */
 /* This software is provided 'as-is', without any expressed or implied       */
 
 
 /*****************************************************************************/
-/*                                  Data                                    */
+/*                                 Forwards                                  */
+/*****************************************************************************/
+
+
+
+struct StrBuf;
+
+
+
+/*****************************************************************************/
+/*                                  Data                                    */
 /*****************************************************************************/
 
 
@@ -89,7 +99,8 @@ extern int            PageLength;     /* Length of a listing page */
 
 
 
-void NewListingLine (const char* Line, unsigned char File, unsigned char Depth);
+void NewListingLine (const struct StrBuf* Line, unsigned char File,
+                     unsigned char Depth);
 /* Create a new ListLine struct */
 
 void EnableListing (void);