diff options
Diffstat (limited to 'apps/plugins/lib/playback_control.h')
| -rw-r--r-- | apps/plugins/lib/playback_control.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/plugins/lib/playback_control.h b/apps/plugins/lib/playback_control.h index a259fc9..679a890 100644 --- a/apps/plugins/lib/playback_control.h +++ b/apps/plugins/lib/playback_control.h @@ -19,6 +19,12 @@ #ifndef __PLAYBACK_CONTROL_H__ #define __PLAYBACK_CONTROL_H__ +/* Use these if your menu uses the new menu api. + REMEBER to call playback_control_init(rb) before rb->do_menu()... */ +extern const struct menu_item_ex *playback_control_menu; +void playback_control_init(struct plugin_api* newapi); + +/* Use this if your menu still uses the old menu api */ bool playback_control(struct plugin_api* api); #endif /* __PLAYBACK_CONTROL_H__ */ |