X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=macro.h;h=2418c2607c27cf1f3061bed075c59fd1c6db5c53;hp=8eeff449a676ebdc2bf6b51fbaa5f7fedef857a2;hb=d16b8ea0ee65b2ad901ca6b0624c07e6e4930cc4;hpb=75cce0d9eb190f6094f66ae283b5981af25e5a57 diff --git a/macro.h b/macro.h index 8eeff44..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__ -