plan9fox/sys/src/games/eui.h
qwx 88537cfe9b demote libemu to common code
- too small, nothing else that won't be under /games will use it
- "libemu" as a name doesn't make sense here
2018-05-13 07:01:47 +02:00

20 lines
428 B
C

enum{
MILLION = 1000000,
BILLION = 1000000000,
};
extern u64int keys, keys2;
extern int trace, paused;
extern int savereq, loadreq;
extern QLock pauselock;
extern int scale, 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*));