vrseasons

view src/main.h @ 0:393ef1143c9c

VR seasons
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 07 Apr 2015 11:16:56 +0300
parents
children
line source
1 #ifndef MAIN_H_
2 #define MAIN_H_
4 /* functions defined by the various main_whatever frontends */
6 void quit();
7 void swap_buffers();
8 void redisplay();
9 void fullscreen();
10 void windowed();
11 void move_window(int x, int y);
12 void window_position(int *xout, int *yout);
13 void resize_window(int x, int y);
14 void window_size(int *xout, int *yout);
16 #endif /* MAIN_H_ */