summaryrefslogtreecommitdiff
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 = {
282 reload_directory, 282 reload_directory,
283 create_numbered_filename, 283 create_numbered_filename,
284 file_exists, 284 file_exists,
285 strip_extension,
285 286
286 /* dir */ 287 /* dir */
287 opendir, 288 opendir,
@@ -292,6 +293,9 @@ static const struct plugin_api rockbox_api = {
292 dir_exists, 293 dir_exists,
293 294
294 /* kernel/ system */ 295 /* kernel/ system */
296#ifdef CPU_ARM
297 __div0,
298#endif
295 PREFIX(sleep), 299 PREFIX(sleep),
296 yield, 300 yield,
297 &current_tick, 301 &current_tick,
@@ -627,10 +631,6 @@ static const struct plugin_api rockbox_api = {
627 appsversion, 631 appsversion,
628 /* new stuff at the end, sort into place next time 632 /* new stuff at the end, sort into place next time
629 the API gets incompatible */ 633 the API gets incompatible */
630#ifdef CPU_ARM
631 __div0,
632#endif
633 strip_extension
634}; 634};
635 635
636int plugin_load(const char* plugin, const void* parameter) 636int plugin_load(const char* plugin, const void* parameter)