frontend: make analogs configurable
[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 "linux/fbdev.h"
10 #include "plat.h"
11
12 struct vout_fbdev *layer_fb;
13 int g_layer_x, g_layer_y, g_layer_w, g_layer_h;
14 struct in_default_bind in_evdev_defbinds[] = {
15         { 0, 0, 0 },
16 };
17
18 int omap_enable_layer(int enabled)
19 {
20         return 0;
21 }
22
23 void plat_video_menu_enter(int is_rom_loaded)
24 {
25 }
26
27 void plat_video_menu_begin(void)
28 {
29 }
30
31 void plat_video_menu_end(void)
32 {
33 }
34
35 void plat_video_menu_leave(void)
36 {
37 }
38
39 void plat_init(void)
40 {
41 }
42
43 void plat_finish(void)
44 {
45 }
46
47 void *plat_prepare_screenshot(int *w, int *h, int *bpp)
48 {
49         return 0;
50 }
51
52 int plat_cpu_clock_get(void)
53 {
54         return -1;
55 }
56
57 int plat_cpu_clock_apply(int cpu_clock)
58 {
59         return -1;
60 }
61
62 int plat_get_bat_capacity(void)
63 {
64         return -1;
65 }
66
67 void plat_step_volume(int is_up)
68 {
69 }
70
71 void plat_trigger_vibrate(void)
72 {
73 }