mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 02:27:39 -04:00
Convert the playback control menu to the new API. Makes a good example
for plugin devs :) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12919 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
1764583f99
commit
73c46ffd6e
2 changed files with 29 additions and 18 deletions
|
@ -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__ */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue