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 d9f7c4e24c..10cb9263a4 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -551,7 +551,7 @@ static const struct plugin_api rockbox_api = {
551 pcm_get_peak_buffer, 551 pcm_get_peak_buffer,
552 pcm_play_lock, 552 pcm_play_lock,
553 pcm_play_unlock, 553 pcm_play_unlock,
554 pcmbuf_beep, 554 beep_play,
555#ifdef HAVE_RECORDING 555#ifdef HAVE_RECORDING
556 &rec_freq_sampr[0], 556 &rec_freq_sampr[0],
557 pcm_init_recording, 557 pcm_init_recording,
@@ -778,6 +778,9 @@ static const struct plugin_api rockbox_api = {
778 778
779 /* new stuff at the end, sort into place next time 779 /* new stuff at the end, sort into place next time
780 the API gets incompatible */ 780 the API gets incompatible */
781
782 mixer_channel_status,
783 mixer_channel_get_buffer,
781}; 784};
782 785
783int plugin_load(const char* plugin, const void* parameter) 786int plugin_load(const char* plugin, const void* parameter)