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 b4239bb8d9..ecd5025e2c 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -44,7 +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#if (CONFIG_HWCODEC == MASNONE) && !defined(SIMULATOR) 47#if (CONFIG_HWCODEC == MASNONE)
48#include "pcm_playback.h" 48#include "pcm_playback.h"
49#endif 49#endif
50 50
@@ -271,10 +271,12 @@ static const struct plugin_api rockbox_api = {
271#if CONFIG_KEYPAD == IRIVER_H100_PAD 271#if CONFIG_KEYPAD == IRIVER_H100_PAD
272 button_hold, 272 button_hold,
273#endif 273#endif
274#if (CONFIG_HWCODEC == MASNONE) && !defined(SIMULATOR) 274#if (CONFIG_HWCODEC == MASNONE)
275 pcm_play_data, 275 pcm_play_data,
276 pcm_play_stop, 276 pcm_play_stop,
277 pcm_set_frequency,
277 pcm_is_playing, 278 pcm_is_playing,
279 pcm_set_volume
278#endif 280#endif
279}; 281};
280 282