summaryrefslogtreecommitdiff
path: root/sys/src/games/eui.h
blob: 89d6fafbb331c9ba6fca01e58e5a5fe804ce35b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
enum{
	MILLION = 1000000,
	BILLION = 1000000000,
};

extern u64int keys, keys2;
extern int trace, paused;
extern int savereq, loadreq;
extern QLock pauselock;
extern int scale, fixscale, warp10;
extern uchar *pic;

void*	emalloc(ulong);
void	flushmouse(int);
void	flushscreen(void);
void	flushaudio(int(*)(void));
void	regkeyfn(Rune, void(*)(void));
void	regkey(char*, Rune, int);
void	initemu(int, int, int, ulong, int, void(*)(void*));