istereo2

diff 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 diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/ui.h	Wed Sep 23 05:44:58 2015 +0300
     1.3 @@ -0,0 +1,21 @@
     1.4 +#ifndef UI_H_
     1.5 +#define UI_H_
     1.6 +
     1.7 +#ifdef __cplusplus
     1.8 +extern "C" {
     1.9 +#endif
    1.10 +
    1.11 +int ui_init(void);
    1.12 +void ui_shutdown(void);
    1.13 +
    1.14 +void ui_reshape(int x, int y);
    1.15 +void ui_draw(void);
    1.16 +
    1.17 +void ui_button(int bn, int press, int x, int y);
    1.18 +void ui_motion(int x, int y);
    1.19 +
    1.20 +#ifdef __cplusplus
    1.21 +}
    1.22 +#endif
    1.23 +
    1.24 +#endif	/* UI_H_ */