frontend: input: pass default binds as argument
[pcsx_rearmed.git] / frontend / plat_dummy.c
index 689fa3b..26cd3a2 100644 (file)
@@ -5,21 +5,8 @@
  * See the COPYING file in the top-level directory.
  */
 
-#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 },
-};
-
-int omap_enable_layer(int enabled)
-{
-       return 0;
-}
-
 void plat_video_menu_enter(int is_rom_loaded)
 {
 }
@@ -36,15 +23,29 @@ void plat_video_menu_leave(void)
 {
 }
 
-void plat_init(void)
+void plat_gvideo_open(void)
 {
 }
 
-void plat_finish(void)
+void *plat_gvideo_set_mode(int *w, int *h, int *bpp)
+{
+       return 0;
+}
+
+void *plat_gvideo_flip(void)
 {
+       return 0;
 }
 
-void in_update_analogs(void)
+void plat_gvideo_close(void)
+{
+}
+
+void plat_init(void)
+{
+}
+
+void plat_finish(void)
 {
 }
 
@@ -72,6 +73,10 @@ void plat_step_volume(int is_up)
 {
 }
 
-void plat_trigger_vibrate(void)
+void plat_trigger_vibrate(int is_strong)
+{
+}
+
+void plat_minimize(void)
 {
 }