summaryrefslogtreecommitdiffstats
path: root/apps/plugin.c
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2009-02-11 16:37:12 +0000
committerThomas Martitz <kugel@rockbox.org>2009-02-11 16:37:12 +0000
commit548109084f739cf74d2263cbd136f82eb67ea9d5 (patch)
tree65038ab71d12e0ee6cb236b518b0ccf3bb531c8c /apps/plugin.c
parentf2d5c3532fd21c04e77aa86732742b578283b697 (diff)
downloadrockbox-548109084f739cf74d2263cbd136f82eb67ea9d5.tar.gz
rockbox-548109084f739cf74d2263cbd136f82eb67ea9d5.zip
Increase codec and plugin API version (due to changes it r19971), and sort the recently added things
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19973 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index f9f1c53617..856dd6e1cb 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -282,6 +282,7 @@ static const struct plugin_api rockbox_api = {
reload_directory,
create_numbered_filename,
file_exists,
+ strip_extension,
/* dir */
opendir,
@@ -292,6 +293,9 @@ static const struct plugin_api rockbox_api = {
dir_exists,
/* kernel/ system */
+#ifdef CPU_ARM
+ __div0,
+#endif
PREFIX(sleep),
yield,
&current_tick,
@@ -627,10 +631,6 @@ static const struct plugin_api rockbox_api = {
appsversion,
/* new stuff at the end, sort into place next time
the API gets incompatible */
-#ifdef CPU_ARM
- __div0,
-#endif
- strip_extension
};
int plugin_load(const char* plugin, const void* parameter)