X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=frontend%2Fplat_dummy.c;h=058ef1b817646e90e935567d50995c433c5f8966;hp=c6af46b71bce7ca509a72bb3bbdd71c0f56695fa;hb=478216725b77d1c7fd45d972e3c596134633adba;hpb=3c70c47bb2fa50066c4c3b23813253e03b8751fe diff --git a/frontend/plat_dummy.c b/frontend/plat_dummy.c index c6af46b7..058ef1b8 100644 --- a/frontend/plat_dummy.c +++ b/frontend/plat_dummy.c @@ -7,6 +7,7 @@ #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; @@ -31,7 +32,43 @@ void plat_video_menu_end(void) { } +void plat_video_menu_leave(void) +{ +} + void plat_init(void) { } +void plat_finish(void) +{ +} + +void in_update_analogs(void) +{ +} + +void *plat_prepare_screenshot(int *w, int *h, int *bpp) +{ + return 0; +} + +int plat_rescan_inputs(void) +{ + return -1; +} + +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; +}