]> git.sur5r.net Git - cc65/blobdiff - src/ca65/incpath.h
Merge remote-tracking branch 'upstream/master' into a5200
[cc65] / src / ca65 / incpath.h
index a2b71e55333fb41a8fb0ccd9d00b87aca6816a6b..818e36265389c1ee45a942bd5d5613c41af31da8 100644 (file)
@@ -1,15 +1,15 @@
 /*****************************************************************************/
 /*                                                                           */
-/*                                incpath.h                                 */
+/*                                 incpath.h                                 */
 /*                                                                           */
-/*           Include path handling for the ca65 macro assembler             */
+/*            Include path handling for the ca65 macro assembler             */
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 2000-2003 Ullrich von Bassewitz                                       */
-/*               Römerstrasse 52                                             */
-/*               D-70794 Filderstadt                                         */
-/* EMail:        uz@cc65.org                                                 */
+/* (C) 2000-2013, Ullrich von Bassewitz                                      */
+/*                Roemerstrasse 52                                           */
+/*                D-70794 Filderstadt                                        */
+/* EMail:         uz@cc65.org                                                */
 /*                                                                           */
 /*                                                                           */
 /* This software is provided 'as-is', without any expressed or implied       */
 
 
 
+/* common */
+#include "searchpath.h"
+
+
+
 /*****************************************************************************/
-/*                                          Code                                    */
+/*                                   Data                                    */
 /*****************************************************************************/
 
 
 
-void AddIncludePath (const char* NewPath);
-/* Add a new include path to the existing one */
+extern SearchPaths*     IncSearchPath;          /* Standard include path */
+extern SearchPaths*     BinSearchPath;          /* Binary include path */
 
-char* FindInclude (const char* Name);
-/* Find an include file. Return a pointer to a malloced area that contains
- * the complete path, if found, return 0 otherwise.
- */
 
 
+/*****************************************************************************/
+/*                                   Code                                    */
+/*****************************************************************************/
 
-/* End of incpath.h */
 
-#endif
+
+void InitIncludePaths (void);
+/* Initialize the include path search list */
+
+void FinishIncludePaths (void);
+/* Finish creating the include path search list. */
 
 
 
+/* End of incpath.h */
+
+#endif