]> Shamusworld >> Repos - rmac/blob - macro.h
Fixed code to remove warnings. Inching closer towards zero. :-)
[rmac] / macro.h
1 //
2 // RMAC - Reboot's Macro Assembler for the Atari Jaguar Console System
3 // MACRO.H - Macro Definition and Invocation
4 // Copyright (C) 199x Landon Dyer, 2017 Reboot and Friends
5 // RMAC derived from MADMAC v1.07 Written by Landon Dyer, 1986
6 // Source utilised with the kind permission of Landon Dyer
7 //
8
9 #ifndef __MACRO_H__
10 #define __MACRO_H__
11
12 #include "rmac.h"
13
14 // Exported variables
15 extern LONG curuniq;
16 extern TOKEN * argPtrs[];
17
18 // Exported functions
19 void InitMacro(void);
20 int ExitMacro(void);
21 int DefineMacro(void);
22 int defrept(void);
23 int lncatch(int (*)(), char *);
24 int kwmatch(char *, char *);
25 int InvokeMacro(SYM *, WORD);
26
27 #endif // __MACRO_H__