repo.or.cz
/
doom2d-restoration.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
install: add install sources and resources
[doom2d-restoration.git]
/
GAME
/
GLOB.H
blob
5929a9f01336a51f35ade38d6a83bed76ca5282b
1
// Globals
2
3
#ifndef __386__
4
#error А как же DOS4GW?
5
#endif
6
7
#ifndef NULL
8
#define NULL 0
9
#endif
10
11
#define ON 1
12
#define OFF 0
13
#define TRUE 1
14
#define FALSE 0
15
16
typedef unsigned char byte;
17
typedef unsigned short word;
18
typedef unsigned int dword;
19
20
#define random(n) (rand()%(n))
21
22
void logo(const char *,...);
23
void logo_gas(int,int);
24
25
extern int gamma;
26
extern int snd_card;
27
extern int _cpu;