istereo2

view src/ui.h @ 8:661bf09db398

- replaced Quartz timer with cross-platform timer code - protected goatkit builtin theme function from being optimized out
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 24 Sep 2015 07:09:37 +0300
parents
children 7bd4264bf74a
line source
1 #ifndef UI_H_
2 #define UI_H_
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
8 int ui_init(void);
9 void ui_shutdown(void);
11 void ui_reshape(int x, int y);
12 void ui_draw(void);
14 void ui_button(int bn, int press, int x, int y);
15 void ui_motion(int x, int y);
17 #ifdef __cplusplus
18 }
19 #endif
21 #endif /* UI_H_ */