glviewvol

view src/dicomview.h @ 3:32c4a7160350

den kanei kryo stin ellada
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 28 Dec 2014 21:48:15 +0200
parents
children 04330eb80b36
line source
1 #ifndef DICOMVIEW_H_
2 #define DICOMVIEW_H_
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
8 int init();
9 void cleanup();
11 void ev_display();
12 void ev_reshape(int x, int y);
13 void ev_keyboard(int key, int press, int x, int y);
14 void ev_mouse_button(int bn, int press, int x, int y);
15 void ev_mouse_motion(int x, int y);
17 // functions provided by the frontend
18 void swap_buffers();
19 void redisplay();
20 void quit();
22 #ifdef __cplusplus
23 }
24 #endif
26 #endif // DICOMVIEW_H_