X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=frontend%2Fplat_dummy.c;h=e768946a17e62ee9090816f325a007a1e0028779;hp=b209f4fe0bf6631743d3ab424782e856d9fa1b9d;hb=1b0c513996d57548fc5df8726e21a68e5ace4f99;hpb=ccf51908872ddeb811b1245e6751600b860d90b5 diff --git a/frontend/plat_dummy.c b/frontend/plat_dummy.c index b209f4fe..e768946a 100644 --- a/frontend/plat_dummy.c +++ b/frontend/plat_dummy.c @@ -7,8 +7,10 @@ #include "common/input.h" #include "linux/fbdev.h" +#include "plat.h" struct vout_fbdev *layer_fb; +int g_layer_x, g_layer_y, g_layer_w, g_layer_h; struct in_default_bind in_evdev_defbinds[] = { { 0, 0, 0 }, }; @@ -30,7 +32,42 @@ void plat_video_menu_end(void) { } +void plat_video_menu_leave(void) +{ +} + void plat_init(void) { } +void plat_finish(void) +{ +} + +void *plat_prepare_screenshot(int *w, int *h, int *bpp) +{ + return 0; +} + +int plat_cpu_clock_get(void) +{ + return -1; +} + +int plat_cpu_clock_apply(int cpu_clock) +{ + return -1; +} + +int plat_get_bat_capacity(void) +{ + return -1; +} + +void plat_step_volume(int is_up) +{ +} + +void plat_trigger_vibrate(void) +{ +}