diff options
| author | Yoshihisa Uchida <uchida@rockbox.org> | 2010-07-07 12:42:15 +0000 |
|---|---|---|
| committer | Yoshihisa Uchida <uchida@rockbox.org> | 2010-07-07 12:42:15 +0000 |
| commit | 3691435c25b73925029df0c606bfd584f0799621 (patch) | |
| tree | 965b259249af4f0aca4742912cf94b8ec0c7373a /apps/plugin.c | |
| parent | 276dfa23b611a85bedebceb986d0b4549a934187 (diff) | |
| download | rockbox-3691435c25b73925029df0c606bfd584f0799621.zip rockbox-3691435c25b73925029df0c606bfd584f0799621.tar.gz rockbox-3691435c25b73925029df0c606bfd584f0799621.tar.bz2 rockbox-3691435c25b73925029df0c606bfd584f0799621.tar.xz | |
plugin api: new functions set the end of the structure. thanks to Frank Gevaerts.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27335 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
| -rw-r--r-- | apps/plugin.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index 1196a88..4c0ec84 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -565,10 +565,6 @@ static const struct plugin_api rockbox_api = { /* statusbars */ &statusbars, gui_syncstatusbar_draw, -#ifdef HAVE_LCD_BITMAP - sb_skin_get_info_vp, - sb_skin_update, -#endif /* options */ get_settings_list, @@ -722,6 +718,12 @@ static const struct plugin_api rockbox_api = { #endif rbversion, + +#ifdef HAVE_LCD_BITMAP + sb_skin_get_info_vp, + sb_skin_update, +#endif + /* new stuff at the end, sort into place next time the API gets incompatible */ }; |