]> git.sur5r.net Git - cc65/blobdiff - src/ar65/library.h
Merge pull request #80 from AntiheroSoftware/ca65-65816
[cc65] / src / ar65 / library.h
index bd4b6edbd90b34a52f53e7d79df9f58ff3385195..3453f1ea53581ccde5bd7f44f9fcfd9a25be73da 100644 (file)
@@ -1,15 +1,15 @@
 /*****************************************************************************/
 /*                                                                           */
-/*                                library.h                                 */
+/*                                 library.h                                 */
 /*                                                                           */
-/*        Library data structures and helpers for the ar65 archiver         */
+/*         Library data structures and helpers for the ar65 archiver         */
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 1998     Ullrich von Bassewitz                                        */
-/*              Wacholderweg 14                                              */
-/*              D-70597 Stuttgart                                            */
-/* EMail:       uz@musoftware.de                                             */
+/* (C) 1998-2012, Ullrich von Bassewitz                                      */
+/*                Roemerstrasse 52                                           */
+/*                D-70794 Filderstadt                                        */
+/* EMail:         uz@cc65.org                                                */
 /*                                                                           */
 /*                                                                           */
 /* This software is provided 'as-is', without any expressed or implied       */
 
 
 /*****************************************************************************/
-/*                                          Data                                    */
+/*                                   Data                                    */
 /*****************************************************************************/
 
 
 
-/* File descriptor for the new library file */
-extern FILE*   NewLib;
+/* Name of the library file */
+extern const char* LibName;
 
 
 
 /*****************************************************************************/
-/*                                          Code                                    */
+/*                                   Code                                    */
 /*****************************************************************************/
 
 
@@ -73,7 +73,7 @@ unsigned long LibCopyTo (FILE* F, unsigned long Bytes);
 void LibCopyFrom (unsigned long Pos, unsigned long Bytes, FILE* F);
 /* Copy data from the library file into another file */
 
-void LibClose (void);  
+void LibClose (void);
 /* Write remaining data, close both files and copy the temp file to the old
  * filename
  */