psx_gpu: add a tool to generate asm offsets
[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 "plat.h"
9
10 void plat_video_menu_enter(int is_rom_loaded)
11 {
12 }
13
14 void plat_video_menu_begin(void)
15 {
16 }
17
18 void plat_video_menu_end(void)
19 {
20 }
21
22 void plat_video_menu_leave(void)
23 {
24 }
25
26 void plat_gvideo_open(int is_pal)
27 {
28 }
29
30 void *plat_gvideo_set_mode(int *w, int *h, int *bpp)
31 {
32         return 0;
33 }
34
35 void *plat_gvideo_flip(void)
36 {
37         return 0;
38 }
39
40 void plat_gvideo_close(void)
41 {
42 }
43
44 void plat_init(void)
45 {
46 }
47
48 void plat_finish(void)
49 {
50 }
51
52 void *plat_prepare_screenshot(int *w, int *h, int *bpp)
53 {
54         return 0;
55 }
56
57 int plat_cpu_clock_get(void)
58 {
59         return -1;
60 }
61
62 int plat_cpu_clock_apply(int cpu_clock)
63 {
64         return -1;
65 }
66
67 int plat_get_bat_capacity(void)
68 {
69         return -1;
70 }
71
72 void plat_step_volume(int is_up)
73 {
74 }
75
76 void plat_trigger_vibrate(int is_strong)
77 {
78 }
79
80 void plat_minimize(void)
81 {
82 }