summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 20ff190e37..690aee9bf3 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -382,6 +382,7 @@ static const struct plugin_api rockbox_api = {
382 file_exists, 382 file_exists,
383 strip_extension, 383 strip_extension,
384 crc_32, 384 crc_32,
385 filetype_get_attr,
385 386
386 /* dir */ 387 /* dir */
387 (opendir_func)PREFIX(opendir), 388 (opendir_func)PREFIX(opendir),
@@ -392,6 +393,10 @@ static const struct plugin_api rockbox_api = {
392 dir_exists, 393 dir_exists,
393 dir_get_info, 394 dir_get_info,
394 395
396 /* browsing */
397 browse_context_init,
398 rockbox_browse,
399
395 /* kernel/ system */ 400 /* kernel/ system */
396#if defined(CPU_ARM) && CONFIG_PLATFORM & PLATFORM_NATIVE 401#if defined(CPU_ARM) && CONFIG_PLATFORM & PLATFORM_NATIVE
397 __div0, 402 __div0,
@@ -772,9 +777,6 @@ static const struct plugin_api rockbox_api = {
772 777
773 /* new stuff at the end, sort into place next time 778 /* new stuff at the end, sort into place next time
774 the API gets incompatible */ 779 the API gets incompatible */
775 filetype_get_attr,
776 browse_context_init,
777 rockbox_browse,
778}; 780};
779 781
780int plugin_load(const char* plugin, const void* parameter) 782int plugin_load(const char* plugin, const void* parameter)