#define BYTE char /* Signed byte */ #define UBYTE unsigned char /* unsigned Signed byte */ #define BOOLEAN int /* 2 valued (true/false) */ #define WORD int /* Signed word (16 bits) */ #define UWORD unsigned int /* unsigned word */ #define LONG long int /* signed long (32 bits) */ #define ULONG unsigned long int /* Unsigned long */ #define FAR _far #define REG register /* register variable */ #define LOCAL auto /* Local var on 68000 */ #define EXTERN extern /* External variable */ #define MLOCAL static /* Local to module */ #define GLOBAL /**/ /* Global variable */ #define VOID void /* Void function return */ #define DEFAULT int /* Default size */ /****************************************************************************/ /* Miscellaneous Definitions: */ /****************************************************************************/ #define FAILURE (-1) /* Function failure return val */ #define SUCCESS (0) /* Function success return val */ #define YES 1 /* "TRUE" */ #define NO 0 /* "FALSE" */ #define FOREVER for(;;) /* Infinite loop declaration */ #define NULL ((void *)0) /* Null pointer value */ #define NULLPTR (char *) 0 /* */ #define EOF (-1) /* EOF Value */ #define TRUE (1) /* Function TRUE value */ #define FALSE (0) /* Function FALSE value */ #define ibmvdi (1) /* ibmvdi flag for c code */