diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2007-05-08 11:55:43 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2007-05-08 11:55:43 +0000 |
| commit | 77a458a464450c4e9d6977ac3f27b0e56217443c (patch) | |
| tree | 526440820d32959de28747194effefb2ad6012d0 /apps/plugin.c | |
| parent | b15ef987ca75a6940313ae22f638363d50d7919e (diff) | |
| download | rockbox-77a458a464450c4e9d6977ac3f27b0e56217443c.zip rockbox-77a458a464450c4e9d6977ac3f27b0e56217443c.tar.gz rockbox-77a458a464450c4e9d6977ac3f27b0e56217443c.tar.bz2 rockbox-77a458a464450c4e9d6977ac3f27b0e56217443c.tar.xz | |
Move the old api out of the core and into the plugin lib.
ew plugins shuold use the new api and not this one.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13358 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
| -rw-r--r-- | apps/plugin.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index 1478805..379c154 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -397,12 +397,10 @@ static const struct plugin_api rockbox_api = { /* menu */ do_menu, - /* OLD API - dont use unless you have to */ - menu_init, - menu_exit, - menu_show, - menu_run, - menu_count, + /* statusbars */ + &statusbars, + gui_syncstatusbar_draw, + /* options */ set_option, set_int, set_bool, |