X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=mark.h;h=e53ae6583f373ec344bae61bf3ac310444256c6e;hp=230a77b3a6c69660c7d8613bb156d8395a1dce13;hb=d0c28c349ddfb8393568037f68bddbe8979ce0df;hpb=3385b366632d03745033fa6b19faabf60219bc6b diff --git a/mark.h b/mark.h index 230a77b..e53ae65 100644 --- a/mark.h +++ b/mark.h @@ -3,7 +3,7 @@ // MARK.H - A record of things that are defined relative to any of the sections // Copyright (C) 199x Landon Dyer, 2011 Reboot and Friends // RMAC derived from MADMAC v1.07 Written by Landon Dyer, 1986 -// Source Utilised with the Kind Permission of Landon Dyer +// Source utilised with the kind permission of Landon Dyer // #ifndef __MARK_H__ @@ -12,17 +12,18 @@ #include "rmac.h" #include "sect.h" -#define MARK_ALLOC_INCR 1024 // #bytes to alloc for more mark space -#define MIN_MARK_MEM (3*sizeof(WORD)+2*sizeof(LONG)) +#define MARK_ALLOC_INCR 1024 // # bytes to alloc for more mark space +#define MIN_MARK_MEM (3 * sizeof(WORD) + 2 * sizeof(LONG)) -// Globals, Externals etc +// Globals, externals, etc. extern MCHUNK * firstmch; -// Prototypes -void init_mark(void); -void stopmark(void); -int rmark(int, LONG, int, int, SYM *); +// Exported functions +void InitMark(void); +void StopMark(void); +int rmark(uint16_t, uint32_t, uint16_t, uint16_t, SYM *); int amark(void); LONG bsdmarkimg(char *, LONG, LONG, int); #endif // __MARK_H__ +