summaryrefslogtreecommitdiff
path: root/apps/plugin.h
diff options
context:
space:
mode:
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};