frontend: generic: preliminary SDL support
[pcsx_rearmed.git] / frontend / plat_dummy.c
... / ...
CommitLineData
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 "plat.h"
10
11struct in_default_bind in_evdev_defbinds[] = {
12 { 0, 0, 0 },
13};
14
15void plat_video_menu_enter(int is_rom_loaded)
16{
17}
18
19void plat_video_menu_begin(void)
20{
21}
22
23void plat_video_menu_end(void)
24{
25}
26
27void plat_video_menu_leave(void)
28{
29}
30
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
49void plat_init(void)
50{
51}
52
53void plat_finish(void)
54{
55}
56
57void *plat_prepare_screenshot(int *w, int *h, int *bpp)
58{
59 return 0;
60}
61
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;
75}
76
77void plat_step_volume(int is_up)
78{
79}
80
81void plat_trigger_vibrate(int is_strong)
82{
83}
84
85void plat_minimize(void)
86{
87}