]> 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 82cd0d2e29f6a538eecc6421eff4fc5c6c5d95cc..b2484cc96fee5b2ed663ded5a761a3ddb7ad4e91 100644 (file)
 
 
 
+/* common */
+#include "searchpath.h"
+
+
+
 /*****************************************************************************/
 /*                                  Data                                    */
 /*****************************************************************************/
 
 
 
-#define INC_STD         0x0001U         /* Add to standard include path */
-#define INC_BIN         0x0002U         /* Add to binary include path */
+extern SearchPath*      IncSearchPath;          /* Standard include path */
+extern SearchPath*      BinSearchPath;          /* Binary include path */
 
 
 
 
 
 
-void AddIncludePath (const char* NewPath, unsigned Where);
-/* Add a new include path to the existing one */
-
-char* FindInclude (const char* Name, unsigned Where);
-/* 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. */