X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=macro.h;h=2418c2607c27cf1f3061bed075c59fd1c6db5c53;hp=ea25b8b503e254cd8f82bdc7970a9fc0fdf03f30;hb=d16b8ea0ee65b2ad901ca6b0624c07e6e4930cc4;hpb=49cce96fba11282e4244187f15be418d5ae5bb8d diff --git a/macro.h b/macro.h index ea25b8b..2418c26 100644 --- a/macro.h +++ b/macro.h @@ -13,18 +13,18 @@ // Globals, externals etc extern LONG curuniq; -extern TOKEN ** argp; +//extern TOKEN ** argp; extern int mjump_align; +extern TOKEN * argPtrs[]; // Prototypes void init_macro(void); int exitmac(void); -int defmac(void); +int DefineMacro(void); int defrept(void); int lncatch(int (*)(), char *); int kwmatch(char *, char *); -int invokemac(SYM *, WORD); +int InvokeMacro(SYM *, WORD); void ib_macro(void); #endif // __MACRO_H__ -