]> git.sur5r.net Git - cc65/blobdiff - src/ca65/incpath.h
Reverted r5835 because of Olivers changes to the asm includes.
[cc65] / src / ca65 / incpath.h
index a2b71e55333fb41a8fb0ccd9d00b87aca6816a6b..b2484cc96fee5b2ed663ded5a761a3ddb7ad4e91 100644 (file)
@@ -6,10 +6,10 @@
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 2000-2003 Ullrich von Bassewitz                                       */
-/*               Römerstrasse 52                                             */
-/*               D-70794 Filderstadt                                         */
-/* EMail:        uz@cc65.org                                                 */
+/* (C) 2000-2010, 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"
+
+
+
+/*****************************************************************************/
+/*                                  Data                                    */
+/*****************************************************************************/
+
+
+
+extern SearchPath*      IncSearchPath;          /* Standard include path */
+extern SearchPath*      BinSearchPath;          /* Binary include path */
+
+
+
 /*****************************************************************************/
 /*                                          Code                                    */
 /*****************************************************************************/
 
 
 
-void AddIncludePath (const char* NewPath);
-/* Add a new include path to the existing one */
+void ForgetAllIncludePaths (void);
+/* Remove all include search paths. */
 
-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.
- */
+void InitIncludePaths (void);
+/* Initialize the include path search list */