ccf51908 |
1 | /* |
2 | * (C) notaz, 2010 |
3 | * |
4 | * This work is licensed under the terms of the GNU GPLv2 or later. |
5 | * See the COPYING file in the top-level directory. |
6 | */ |
7 | |
55b0eeea |
8 | #include "plat.h" |
ccf51908 |
9 | |
c5061935 |
10 | void plat_video_menu_enter(int is_rom_loaded) |
11 | { |
12 | } |
13 | |
ccf51908 |
14 | void plat_video_menu_begin(void) |
15 | { |
16 | } |
17 | |
18 | void plat_video_menu_end(void) |
19 | { |
20 | } |
21 | |
c5061935 |
22 | void plat_video_menu_leave(void) |
23 | { |
24 | } |
25 | |
ab423939 |
26 | void plat_gvideo_open(int is_pal) |
6469a8c4 |
27 | { |
28 | } |
29 | |
30 | void *plat_gvideo_set_mode(int *w, int *h, int *bpp) |
31 | { |
32 | return 0; |
33 | } |
34 | |
35 | void *plat_gvideo_flip(void) |
36 | { |
37 | return 0; |
38 | } |
39 | |
40 | void plat_gvideo_close(void) |
41 | { |
42 | } |
43 | |
ccf51908 |
44 | void plat_init(void) |
45 | { |
46 | } |
47 | |
bd6267e6 |
48 | void plat_finish(void) |
49 | { |
50 | } |
e6eb2066 |
51 | |
47821672 |
52 | void *plat_prepare_screenshot(int *w, int *h, int *bpp) |
53 | { |
54 | return 0; |
55 | } |
56 | |
d71c7095 |
57 | void plat_trigger_vibrate(int pad, int low, int high) |
b944a30e |
58 | { |
59 | } |
a805c855 |
60 | |
61 | void plat_minimize(void) |
62 | { |
63 | } |