]> Shamusworld >> Repos - rmac/blobdiff - rmac.h
.incbin now uses the same directory sets as .include. Also some small cosmetic fixes.
[rmac] / rmac.h
diff --git a/rmac.h b/rmac.h
index 39b8ae67a5dcca8d240f3b81816e475e6b7f8a6d..4a4e8b92b97c7b6ed6bd205ec6e773fdfeae753d 100644 (file)
--- a/rmac.h
+++ b/rmac.h
        // WARNING(FIXME: Code removed because...)
 
        #else
-       //If we're not compiling for Visual Studio let's assume that we're using
-       //some flavour of gcc instead. So let's use the gcc compliant macro instead.
-       //If some weirdo uses something else (I dunno, Intel compiler or something?)
-       //this is probably going to explode spectacularly. Let's wait for the fireworks!
+       // If we're not compiling for Visual Studio let's assume that we're using
+       // some flavour of gcc instead. So let's use the gcc compliant macro
+       // instead. If some weirdo uses something else (I dunno, Intel compiler or
+       // something?) this is probably going to explode spectacularly. Let's wait
+       // for the fireworks!
        #define DO_PRAGMA(x) _Pragma (#x)
        #define WARNING(desc) DO_PRAGMA(message (#desc))
        #define inline __inline
@@ -216,6 +217,7 @@ extern int optim_flags[OPT_COUNT];
 // Exported functions
 char * fext(char *, char *, int);
 int nthpath(char *, int, char *);
+int ParseOptimization(char * optstring);
 
 #endif // __RMAC_H__