summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 9067097591..10391f9f35 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -532,6 +532,38 @@ static const struct plugin_api rockbox_api = {
532 remote_backlight_set_timeout_plugged, 532 remote_backlight_set_timeout_plugged,
533#endif 533#endif
534#endif /* HAVE_REMOTE_LCD */ 534#endif /* HAVE_REMOTE_LCD */
535
536#if (CONFIG_CODEC == SWCODEC)
537 bufopen,
538 bufalloc,
539 bufclose,
540 bufseek,
541 bufadvance,
542 bufread,
543 bufgetdata,
544 bufgettail,
545 bufcuttail,
546
547 buf_get_offset,
548 buf_handle_offset,
549 buf_request_buffer_handle,
550 buf_set_base_handle,
551 buf_used,
552#endif
553
554#ifdef HAVE_TAGCACHE
555 tagcache_search,
556 tagcache_search_set_uniqbuf,
557 tagcache_search_add_filter,
558 tagcache_get_next,
559 tagcache_retrieve,
560 tagcache_search_finish,
561#endif
562
563#ifdef HAVE_ALBUMART
564 find_albumart,
565 search_albumart_files,
566#endif
535}; 567};
536 568
537int plugin_load(const char* plugin, void* parameter) 569int plugin_load(const char* plugin, void* parameter)