doorbell

view spycam/src/spycam.h @ 2:d3f2a2b19504

doorbell server under construction
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 13 Mar 2016 07:56:03 +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_ */