doorbell

diff spycam/src/spycam.h @ 0:a5755687dd75

initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 08 Mar 2016 03:26:01 +0200
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/spycam/src/spycam.h	Tue Mar 08 03:26:01 2016 +0200
     1.3 @@ -0,0 +1,15 @@
     1.4 +#ifndef SPYCAM_H_
     1.5 +#define SPYCAM_H_
     1.6 +
     1.7 +bool app_init();
     1.8 +void app_cleanup();
     1.9 +void app_draw();
    1.10 +void app_reshape(int x, int y);
    1.11 +void app_keyboard(int key, bool press);
    1.12 +void app_mouse_button(int bn, bool press, int x, int y);
    1.13 +void app_mouse_motion(int x, int y);
    1.14 +
    1.15 +void app_quit();
    1.16 +void app_redisplay();
    1.17 +
    1.18 +#endif	/* SPYCAM_H_ */