summaryrefslogtreecommitdiff
path: root/apps/plugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugin.h')
-rw-r--r--apps/plugin.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index 79851661e5..0e3451f698 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -45,6 +45,9 @@
45#include "settings.h" 45#include "settings.h"
46#include "thread.h" 46#include "thread.h"
47#include "playlist.h" 47#include "playlist.h"
48#ifdef HAVE_LCD_BITMAP
49#include "widgets.h"
50#endif
48 51
49#ifdef PLUGIN 52#ifdef PLUGIN
50#if defined(DEBUG) || defined(SIMULATOR) 53#if defined(DEBUG) || defined(SIMULATOR)
@@ -132,10 +135,6 @@ struct plugin_api {
132 int (*lcd_getstringsize)(unsigned char *str, int *w, int *h); 135 int (*lcd_getstringsize)(unsigned char *str, int *w, int *h);
133 void (*lcd_update)(void); 136 void (*lcd_update)(void);
134 void (*lcd_update_rect)(int x, int y, int width, int height); 137 void (*lcd_update_rect)(int x, int y, int width, int height);
135 void (*progressbar)(int x, int y, int width, int height,
136 int percent, int direction);
137 void (*slidebar)(int x, int y, int width, int height,
138 int percent, int direction);
139 void (*scrollbar)(int x, int y, int width, int height, int items, 138 void (*scrollbar)(int x, int y, int width, int height, int items,
140 int min_shown, int max_shown, int orientation); 139 int min_shown, int max_shown, int orientation);
141#ifndef SIMULATOR 140#ifndef SIMULATOR