]> git.sur5r.net Git - cc65/blobdiff - src/ld65/exports.h
Ignore module.inc
[cc65] / src / ld65 / exports.h
index 7204f8c8ece86885aa274cb0b5ca7fa4b313a1b2..1a0e1a008f612756f828657fc41aa3458e6441f2 100644 (file)
@@ -126,10 +126,18 @@ Export* CreateMemExport (const char* Name, Memory* Mem, unsigned long Offs);
 Export* CreateSegExport (const char* Name, Section* S, unsigned long Offs);
 /* Create a relative export to a segment (section) */
 
+Export* FindExport (const char* Name);
+/* Check for an identifier in the list. Return 0 if not found, otherwise
+ * return a pointer to the export.
+ */
+
 int IsUnresolved (const char* Name);
 /* Check if this symbol is an unresolved export */
 
-int IsConstExport (const Export* E);
+int IsUnresolvedExport (const Export* E);
+/* Return true if the given export is unresolved */
+
+int IsConstExport (const Export* E);  
 /* Return true if the expression associated with this export is const */
 
 long GetExportVal (const Export* E);