summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index e4c95cd337..a3c868514b 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -44,6 +44,7 @@
44#include "mp3data.h" 44#include "mp3data.h"
45#include "powermgmt.h" 45#include "powermgmt.h"
46#include "system.h" 46#include "system.h"
47#include "pcm_playback.h"
47 48
48#ifdef HAVE_LCD_BITMAP 49#ifdef HAVE_LCD_BITMAP
49#include "peakmeter.h" 50#include "peakmeter.h"
@@ -268,7 +269,9 @@ static const struct plugin_api rockbox_api = {
268#if CONFIG_KEYPAD == IRIVER_H100_PAD 269#if CONFIG_KEYPAD == IRIVER_H100_PAD
269 button_hold, 270 button_hold,
270#endif 271#endif
271 272 pcm_play_data,
273 pcm_play_stop,
274 pcm_is_playing,
272}; 275};
273 276
274int plugin_load(const char* plugin, void* parameter) 277int plugin_load(const char* plugin, void* parameter)