summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/plugin.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 7ece50bfd3..6509a43d69 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -668,6 +668,7 @@ static const struct plugin_api rockbox_api = {
668#if defined(HAVE_TC_RAMCACHE) && defined(HAVE_DIRCACHE) 668#if defined(HAVE_TC_RAMCACHE) && defined(HAVE_DIRCACHE)
669 tagcache_fill_tags, 669 tagcache_fill_tags,
670#endif 670#endif
671 tagcache_get_stat,
671#endif /* HAVE_TAGCACHE */ 672#endif /* HAVE_TAGCACHE */
672 673
673#ifdef HAVE_ALBUMART 674#ifdef HAVE_ALBUMART
@@ -790,6 +791,7 @@ static const struct plugin_api rockbox_api = {
790 led, 791 led,
791 792
792 /*plugin*/ 793 /*plugin*/
794 plugin_open,
793 plugin_get_buffer, 795 plugin_get_buffer,
794 plugin_get_audio_buffer, /* defined in plugin.c */ 796 plugin_get_audio_buffer, /* defined in plugin.c */
795 plugin_release_audio_buffer, /* defined in plugin.c */ 797 plugin_release_audio_buffer, /* defined in plugin.c */
@@ -802,10 +804,6 @@ static const struct plugin_api rockbox_api = {
802 /* new stuff at the end, sort into place next time 804 /* new stuff at the end, sort into place next time
803 the API gets incompatible */ 805 the API gets incompatible */
804 806
805#ifdef HAVE_TAGCACHE
806 tagcache_get_stat,
807#endif
808 plugin_open,
809}; 807};
810 808
811static int plugin_buffer_handle; 809static int plugin_buffer_handle;