fix x86 build, minor refactoring
[pcsx_rearmed.git] / frontend / plat_dummy.c
CommitLineData
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
8#include "common/input.h"
9#include "linux/fbdev.h"
10
11struct vout_fbdev *layer_fb;
12struct in_default_bind in_evdev_defbinds[] = {
13 { 0, 0, 0 },
14};
15
16int omap_enable_layer(int enabled)
17{
18 return 0;
19}
20
21void plat_video_menu_enter(int is_rom_loaded)
22{
23}
24
25void plat_video_menu_begin(void)
26{
27}
28
29void plat_video_menu_end(void)
30{
31}
32
33void plat_init(void)
34{
35}
36