istereo2

view src/ui.h @ 21:8f41da60b9f5

revert accidentally commited ui change
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 02 Oct 2015 04:55:54 +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_ */