summaryrefslogtreecommitdiff
path: root/apps/plugins/mpegplayer
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/mpegplayer')
-rw-r--r--apps/plugins/mpegplayer/mpeg_misc.c7
-rw-r--r--apps/plugins/mpegplayer/mpeg_misc.h3
2 files changed, 7 insertions, 3 deletions
diff --git a/apps/plugins/mpegplayer/mpeg_misc.c b/apps/plugins/mpegplayer/mpeg_misc.c
index 7b73c7c376..c85285f4f8 100644
--- a/apps/plugins/mpegplayer/mpeg_misc.c
+++ b/apps/plugins/mpegplayer/mpeg_misc.c
@@ -183,8 +183,11 @@ long mpeg_sysevent(void)
183 return mpeg_sysevent_id; 183 return mpeg_sysevent_id;
184} 184}
185 185
186int mpeg_sysevent_callback(int btn, const struct menu_item_ex *menu) 186int mpeg_sysevent_callback(int btn,
187 const struct menu_item_ex *menu,
188 struct gui_synclist *this_list)
187{ 189{
190 (void) this_list;
188 switch (btn) 191 switch (btn)
189 { 192 {
190 case SYS_USB_CONNECTED: 193 case SYS_USB_CONNECTED:
@@ -218,6 +221,6 @@ int mpeg_button_get(int timeout)
218 /* Produce keyclick */ 221 /* Produce keyclick */
219 rb->keyclick_click(true, button); 222 rb->keyclick_click(true, button);
220 223
221 return mpeg_sysevent_callback(button, NULL); 224 return mpeg_sysevent_callback(button, NULL, NULL);
222} 225}
223 226
diff --git a/apps/plugins/mpegplayer/mpeg_misc.h b/apps/plugins/mpegplayer/mpeg_misc.h
index 6626bba594..e04db0e19d 100644
--- a/apps/plugins/mpegplayer/mpeg_misc.h
+++ b/apps/plugins/mpegplayer/mpeg_misc.h
@@ -241,7 +241,8 @@ void mpeg_sysevent_set(void);
241long mpeg_sysevent(void); 241long mpeg_sysevent(void);
242 242
243/* Call with a system event code and used as menu callback */ 243/* Call with a system event code and used as menu callback */
244int mpeg_sysevent_callback(int btn, const struct menu_item_ex *menu); 244int mpeg_sysevent_callback(int btn, const struct menu_item_ex *menu,
245 struct gui_synclist *this_list);
245 246
246/* Handle recorded event */ 247/* Handle recorded event */
247void mpeg_sysevent_handle(void); 248void mpeg_sysevent_handle(void);