diff options
author | Dave Chapman <dave@dchapman.com> | 2005-09-22 08:54:48 +0000 |
---|---|---|
committer | Dave Chapman <dave@dchapman.com> | 2005-09-22 08:54:48 +0000 |
commit | 548c1b72c00087364c8c5ccec354a9ede1724d45 (patch) | |
tree | 873c4b5b56fec0b21a6214a5817b5b0d6ef2c697 /apps/plugin.c | |
parent | 6afb017642a82aabbcd6f4ea5c31ec5d3945f5f8 (diff) |
Added menu interface to plugin API - needed by Sudoku
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7533 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
-rw-r--r-- | apps/plugin.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index 7d3b13c726..6748a19355 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -341,6 +341,20 @@ static const struct plugin_api rockbox_api = { /* new stuff at the end, sort into place next time the API gets incompatible */ + + menu_init, + menu_exit, + menu_show, + menu_run, + menu_cursor, + menu_description, + menu_delete, + menu_count, + menu_moveup, + menu_movedown, + menu_draw, + menu_insert, + menu_set_cursor, }; int plugin_load(const char* plugin, void* parameter) |