summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 52565b82cc..d66cccbc85 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -367,6 +367,9 @@ static const struct plugin_api rockbox_api = {
367 queue_reply, 367 queue_reply,
368#endif 368#endif
369 usb_acknowledge, 369 usb_acknowledge,
370#if defined(HAVE_USBSTACK) && defined(USB_ENABLE_HID)
371 usb_hid_send,
372#endif
370#ifdef RB_PROFILE 373#ifdef RB_PROFILE
371 profile_thread, 374 profile_thread,
372 profstop, 375 profstop,
@@ -651,7 +654,6 @@ static const struct plugin_api rockbox_api = {
651#endif 654#endif
652 655
653#ifdef HAVE_ALBUMART 656#ifdef HAVE_ALBUMART
654 find_albumart,
655 search_albumart_files, 657 search_albumart_files,
656#endif 658#endif
657 659
@@ -665,11 +667,6 @@ static const struct plugin_api rockbox_api = {
665 /* new stuff at the end, sort into place next time 667 /* new stuff at the end, sort into place next time
666 the API gets incompatible */ 668 the API gets incompatible */
667 669
668#if defined(HAVE_USBSTACK) && defined(USB_ENABLE_HID)
669 usb_hid_send,
670#endif
671
672 lcd_set_viewport,
673}; 670};
674 671
675int plugin_load(const char* plugin, const void* parameter) 672int plugin_load(const char* plugin, const void* parameter)