(iOS) Work around clang crash when compiling libpcsxcor/new_dynarec/pcsxmem.c.
[pcsx_rearmed.git] / frontend / plat_dummy.c
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
8 #include "plat.h"
9
10 void plat_video_menu_enter(int is_rom_loaded)
11 {
12 }
13
14 void plat_video_menu_begin(void)
15 {
16 }
17
18 void plat_video_menu_end(void)
19 {
20 }
21
22 void plat_video_menu_leave(void)
23 {
24 }
25
26 void plat_gvideo_open(int is_pal)
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
44 void plat_init(void)
45 {
46 }
47
48 void plat_finish(void)
49 {
50 }
51
52 void *plat_prepare_screenshot(int *w, int *h, int *bpp)
53 {
54         return 0;
55 }
56
57 void plat_trigger_vibrate(int is_strong)
58 {
59 }
60
61 void plat_minimize(void)
62 {
63 }