summaryrefslogtreecommitdiff
path: root/apps/plugin.h
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2004-07-08 13:14:44 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2004-07-08 13:14:44 +0000
commit244106176447effe0330ef194ad93ccaadf589ff (patch)
tree0d50f243af7c625a1af4e425cc909de66182dd8a /apps/plugin.h
parente7bb8c04287ec8baf6f89dd4f169b00ccb7d7171 (diff)
downloadrockbox-244106176447effe0330ef194ad93ccaadf589ff.zip
rockbox-244106176447effe0330ef194ad93ccaadf589ff.tar.gz
rockbox-244106176447effe0330ef194ad93ccaadf589ff.tar.bz2
rockbox-244106176447effe0330ef194ad93ccaadf589ff.tar.xz
Removed progressbar() and slidebar()
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4854 a1c6a512-1295-4272-9138-f99709370657
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 7985166..0e3451f 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -45,6 +45,9 @@
#include "settings.h"
#include "thread.h"
#include "playlist.h"
+#ifdef HAVE_LCD_BITMAP
+#include "widgets.h"
+#endif
#ifdef PLUGIN
#if defined(DEBUG) || defined(SIMULATOR)
@@ -132,10 +135,6 @@ struct plugin_api {
int (*lcd_getstringsize)(unsigned char *str, int *w, int *h);
void (*lcd_update)(void);
void (*lcd_update_rect)(int x, int y, int width, int height);
- void (*progressbar)(int x, int y, int width, int height,
- int percent, int direction);
- void (*slidebar)(int x, int y, int width, int height,
- int percent, int direction);
void (*scrollbar)(int x, int y, int width, int height, int items,
int min_shown, int max_shown, int orientation);
#ifndef SIMULATOR