diff options
Diffstat (limited to 'apps/plugin.c')
| -rw-r--r-- | apps/plugin.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index 20ff190..690aee9 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -382,6 +382,7 @@ static const struct plugin_api rockbox_api = { file_exists, strip_extension, crc_32, + filetype_get_attr, /* dir */ (opendir_func)PREFIX(opendir), @@ -392,6 +393,10 @@ static const struct plugin_api rockbox_api = { dir_exists, dir_get_info, + /* browsing */ + browse_context_init, + rockbox_browse, + /* kernel/ system */ #if defined(CPU_ARM) && CONFIG_PLATFORM & PLATFORM_NATIVE __div0, @@ -772,9 +777,6 @@ static const struct plugin_api rockbox_api = { /* new stuff at the end, sort into place next time the API gets incompatible */ - filetype_get_attr, - browse_context_init, - rockbox_browse, }; int plugin_load(const char* plugin, const void* parameter) |