summaryrefslogtreecommitdiff
path: root/apps/plugin.h
diff options
context:
space:
mode:
authorYoshihisa Uchida <uchida@rockbox.org>2010-07-07 12:42:15 +0000
committerYoshihisa Uchida <uchida@rockbox.org>2010-07-07 12:42:15 +0000
commit3691435c25b73925029df0c606bfd584f0799621 (patch)
tree965b259249af4f0aca4742912cf94b8ec0c7373a /apps/plugin.h
parent276dfa23b611a85bedebceb986d0b4549a934187 (diff)
downloadrockbox-3691435c25b73925029df0c606bfd584f0799621.tar.gz
rockbox-3691435c25b73925029df0c606bfd584f0799621.zip
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.h')
-rw-r--r--apps/plugin.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index 21ec7e42df..bc37c9ce95 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -695,10 +695,6 @@ struct plugin_api {
695 /* scroll bar */ 695 /* scroll bar */
696 struct gui_syncstatusbar *statusbars; 696 struct gui_syncstatusbar *statusbars;
697 void (*gui_syncstatusbar_draw)(struct gui_syncstatusbar * bars, bool force_redraw); 697 void (*gui_syncstatusbar_draw)(struct gui_syncstatusbar * bars, bool force_redraw);
698#ifdef HAVE_LCD_BITMAP
699 struct viewport *(*sb_skin_get_info_vp)(enum screen_type screen);
700 void (*sb_skin_update)(enum screen_type screen, bool force);
701#endif
702 698
703 /* options */ 699 /* options */
704 const struct settings_list* (*get_settings_list)(int*count); 700 const struct settings_list* (*get_settings_list)(int*count);
@@ -889,6 +885,12 @@ struct plugin_api {
889#endif 885#endif
890 886
891 const char *rbversion; 887 const char *rbversion;
888
889#ifdef HAVE_LCD_BITMAP
890 struct viewport *(*sb_skin_get_info_vp)(enum screen_type screen);
891 void (*sb_skin_update)(enum screen_type screen, bool force);
892#endif
893
892 /* new stuff at the end, sort into place next time 894 /* new stuff at the end, sort into place next time
893 the API gets incompatible */ 895 the API gets incompatible */
894}; 896};