initial commit
[retrobench] / src / rbench.h
1 #ifndef RETROBENCH_H_
2 #define RETROBENCH_H_
3
4 struct options {
5         int width, height, bpp;
6 };
7
8 extern struct options opt;
9
10 void redraw(void);
11 void key_event(int key, int press);
12
13 int read_config(const char *fname);
14
15
16 #endif  /* RETROBENCH_H_ */