frontend: generic: preliminary SDL support
[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 "common/input.h"
9 #include "plat.h"
10
11 struct in_default_bind in_evdev_defbinds[] = {
12         { 0, 0, 0 },
13 };
14
15 void plat_video_menu_enter(int is_rom_loaded)
16 {
17 }
18
19 void plat_video_menu_begin(void)
20 {
21 }
22
23 void plat_video_menu_end(void)
24 {
25 }
26
27 void plat_video_menu_leave(void)
28 {
29 }
30
31 void plat_gvideo_open(void)
32 {
33 }
34
35 void *plat_gvideo_set_mode(int *w, int *h, int *bpp)
36 {
37         return 0;
38 }
39
40 void *plat_gvideo_flip(void)
41 {
42         return 0;
43 }
44
45 void plat_gvideo_close(void)
46 {
47 }
48
49 void plat_init(void)
50 {
51 }
52
53 void plat_finish(void)
54 {
55 }
56
57 void *plat_prepare_screenshot(int *w, int *h, int *bpp)
58 {
59         return 0;
60 }
61
62 int plat_cpu_clock_get(void)
63 {
64         return -1;
65 }
66
67 int plat_cpu_clock_apply(int cpu_clock)
68 {
69         return -1;
70 }
71
72 int plat_get_bat_capacity(void)
73 {
74         return -1;
75 }
76
77 void plat_step_volume(int is_up)
78 {
79 }
80
81 void plat_trigger_vibrate(int is_strong)
82 {
83 }
84
85 void plat_minimize(void)
86 {
87 }