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