fix x86 build, minor refactoring
[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
11 struct vout_fbdev *layer_fb;
12 struct in_default_bind in_evdev_defbinds[] = {
13         { 0, 0, 0 },
14 };
15
16 int omap_enable_layer(int enabled)
17 {
18         return 0;
19 }
20
21 void plat_video_menu_enter(int is_rom_loaded)
22 {
23 }
24
25 void plat_video_menu_begin(void)
26 {
27 }
28
29 void plat_video_menu_end(void)
30 {
31 }
32
33 void plat_init(void)
34 {
35 }
36