doorbell

view 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 source
1 #ifndef SPYCAM_H_
2 #define SPYCAM_H_
4 bool app_init();
5 void app_cleanup();
6 void app_draw();
7 void app_reshape(int x, int y);
8 void app_keyboard(int key, bool press);
9 void app_mouse_button(int bn, bool press, int x, int y);
10 void app_mouse_motion(int x, int y);
12 void app_quit();
13 void app_redisplay();
15 #endif /* SPYCAM_H_ */