istereo2

view src/ui.h @ 6:3bccfc7d10fe

goatkit is drawing
author John Tsiombikas <nuclear@member.fsf.org>
date Wed, 23 Sep 2015 05:44:58 +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_ */