frontend: input driver and volume control for Wiz
[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"
55b0eeea 10#include "plat.h"
ccf51908 11
12struct vout_fbdev *layer_fb;
3c70c47b 13int g_layer_x, g_layer_y, g_layer_w, g_layer_h;
ccf51908 14struct in_default_bind in_evdev_defbinds[] = {
15 { 0, 0, 0 },
16};
17
18int omap_enable_layer(int enabled)
19{
20 return 0;
21}
22
c5061935 23void plat_video_menu_enter(int is_rom_loaded)
24{
25}
26
ccf51908 27void plat_video_menu_begin(void)
28{
29}
30
31void plat_video_menu_end(void)
32{
33}
34
c5061935 35void plat_video_menu_leave(void)
36{
37}
38
ccf51908 39void plat_init(void)
40{
41}
42
bd6267e6 43void plat_finish(void)
44{
45}
e6eb2066 46
799b0b87 47void in_update_analogs(void)
48{
49}
ef94866c 50
47821672 51void *plat_prepare_screenshot(int *w, int *h, int *bpp)
52{
53 return 0;
54}
55
55b0eeea 56int plat_rescan_inputs(void)
ef94866c 57{
55b0eeea 58 return -1;
59}
60
61int plat_cpu_clock_get(void)
62{
63 return -1;
64}
65
66int plat_cpu_clock_apply(int cpu_clock)
67{
68 return -1;
69}
70
71int plat_get_bat_capacity(void)
72{
73 return -1;
ef94866c 74}
221be40d 75
76void plat_step_volume(int is_up)
77{
78}