0.7.2-alt1
[qemu] / qemu-gtk / null_fs.c
1 /* dummy functions - return successful but dont actually change the mode */
2 /* use this with Win32 GTK until someone writes a win32_fs.c */
3
4 int fullscreen_init(void)
5 {
6         return 1;
7 }
8
9 int fullscreen_switch(int x, int y, int w, int h)
10 {
11         return 1;
12 }
13
14 int fullscreen_reset(void)
15 {
16         return 1;
17 }
18
19 void fullscreen_cleanup(void)
20 {
21 }