]> git.sur5r.net Git - cc65/blobdiff - src/ca65/incpath.h
Finished implemenation of commands to delete macros. Added the new commands to
[cc65] / src / ca65 / incpath.h
index b4942ab4d2a256be924fe0787f60896dcab72601..b2484cc96fee5b2ed663ded5a761a3ddb7ad4e91 100644 (file)
@@ -6,7 +6,7 @@
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 2000-2009, Ullrich von Bassewitz                                      */
+/* (C) 2000-2010, Ullrich von Bassewitz                                      */
 /*                Roemerstrasse 52                                           */
 /*                D-70794 Filderstadt                                        */
 /* EMail:         uz@cc65.org                                                */
 
 
 
+/* common */
+#include "searchpath.h"
+
+
+
 /*****************************************************************************/
-/*                                          Code                                    */
+/*                                  Data                                    */
 /*****************************************************************************/
 
 
 
-void AddIncludePath (const char* NewPath);
-/* Add a new include path to the existing one */
+extern SearchPath*      IncSearchPath;          /* Standard include path */
+extern SearchPath*      BinSearchPath;          /* Binary include path */
+
+
+
+/*****************************************************************************/
+/*                                          Code                                    */
+/*****************************************************************************/
+
 
-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 ForgetAllIncludePaths (void);
 /* Remove all include search paths. */