summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2004-07-08 23:01:50 +0000
committerJens Arnold <amiconn@rockbox.org>2004-07-08 23:01:50 +0000
commit84cb8606d0758bbc167e4b87289f66dc060fcf6a (patch)
tree87246911e188c57c7b6ab3e7794e754dd0d901ac /apps
parentcc2e056f217f10f89913d7a253654695f1347747 (diff)
downloadrockbox-84cb8606d0758bbc167e4b87289f66dc060fcf6a.zip
rockbox-84cb8606d0758bbc167e4b87289f66dc060fcf6a.tar.gz
rockbox-84cb8606d0758bbc167e4b87289f66dc060fcf6a.tar.bz2
rockbox-84cb8606d0758bbc167e4b87289f66dc060fcf6a.tar.xz
removing progressbar() and slidebar() broke backwards compatibility
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4857 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/plugin.c1
-rw-r--r--apps/plugin.h3
2 files changed, 1 insertions, 3 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 79c3b39..e9c538f 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -177,7 +177,6 @@ static struct plugin_api rockbox_api = {
plugin_get_mp3_buffer,
mpeg_sound_set,
#ifndef SIMULATOR
- mp3_play_init,
mp3_play_data,
mp3_play_pause,
mp3_play_stop,
diff --git a/apps/plugin.h b/apps/plugin.h
index 0e3451f..5b3193c 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -65,7 +65,7 @@
/* update this to latest version if a change to the api struct breaks
backwards compatibility (and please take the opportunity to sort in any
new function which are "waiting" at the end of the function table) */
-#define PLUGIN_MIN_API_VERSION 10
+#define PLUGIN_MIN_API_VERSION 18
/* plugin return codes */
enum plugin_status {
@@ -206,7 +206,6 @@ struct plugin_api {
void* (*plugin_get_mp3_buffer)(int* buffer_size);
void (*mpeg_sound_set)(int setting, int value);
#ifndef SIMULATOR
- void (*mp3_play_init)(void); /* FIXME: remove this next time we break compatibility */
void (*mp3_play_data)(unsigned char* start, int size, void (*get_more)(unsigned char** start, int* size));
void (*mp3_play_pause)(bool play);
void (*mp3_play_stop)(void);