frontend: get rid of plat_rescan_inputs
[pcsx_rearmed.git] / frontend / plat_dummy.c
index 0b4f100..78a942b 100644 (file)
@@ -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;
@@ -19,6 +20,10 @@ int omap_enable_layer(int enabled)
        return 0;
 }
 
+void plat_video_menu_enter(int is_rom_loaded)
+{
+}
+
 void plat_video_menu_begin(void)
 {
 }
@@ -27,6 +32,10 @@ void plat_video_menu_end(void)
 {
 }
 
+void plat_video_menu_leave(void)
+{
+}
+
 void plat_init(void)
 {
 }
@@ -34,3 +43,31 @@ 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_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)
+{
+}