istereo2

view src/ui.h @ 33:3784a2d4bed5

more ad fuckery
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 10 Oct 2015 16:38:19 +0300
parents 3bccfc7d10fe
children
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_show();
12 void ui_hide();
13 int ui_visible();
15 void ui_reshape(int x, int y);
16 void ui_draw(void);
18 void ui_button(int bn, int press, int x, int y);
19 void ui_motion(int x, int y);
21 #ifdef __cplusplus
22 }
23 #endif
25 #endif /* UI_H_ */