install: add install sources and resources
[doom2d-restoration.git] / GAME / GLOB.H
blob5929a9f01336a51f35ade38d6a83bed76ca5282b
1 // Globals
3 #ifndef __386__
4 #error А как же DOS4GW?
5 #endif
7 #ifndef NULL
8 #define NULL 0
9 #endif
11 #define ON 1
12 #define OFF 0
13 #define TRUE 1
14 #define FALSE 0
16 typedef unsigned char byte;
17 typedef unsigned short word;
18 typedef unsigned int dword;
20 #define random(n) (rand()%(n))
22 void logo(const char *,...);
23 void logo_gas(int,int);
25 extern int gamma;
26 extern int snd_card;
27 extern int _cpu;