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.tar.gz
rockbox-244106176447effe0330ef194ad93ccaadf589ff.zip
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 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