mirror of
https://github.com/ondra-novak/gates_of_skeldal.git
synced 2025-07-15 10:46:44 -04:00
16 lines
278 B
C
16 lines
278 B
C
/* STD.H - My own standard header file...
|
|
*/
|
|
|
|
#define LOCAL static
|
|
#define IMPORT extern
|
|
|
|
#define FAST register
|
|
|
|
typedef short WORD;
|
|
typedef unsigned short UWORD;
|
|
typedef char TEXT;
|
|
typedef unsigned char UTINY;
|
|
typedef long LONG;
|
|
typedef unsigned long ULONG;
|
|
typedef int INT;
|
|
|