summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2004-07-29 13:59:04 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2004-07-29 13:59:04 +0000
commitbe6c8ab463d45f1526fe7a2a4e317e77cfba01f7 (patch)
treeb41617c9813d8306d26fe4c04b24c1c0e0487004 /apps/plugin.c
parent0744c50a3893183a6de041247506a0cab549c540 (diff)
downloadrockbox-be6c8ab463d45f1526fe7a2a4e317e77cfba01f7.zip
rockbox-be6c8ab463d45f1526fe7a2a4e317e77cfba01f7.tar.gz
rockbox-be6c8ab463d45f1526fe7a2a4e317e77cfba01f7.tar.bz2
rockbox-be6c8ab463d45f1526fe7a2a4e317e77cfba01f7.tar.xz
Added functions for the split editor plugin
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4974 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index dc7351d..f210462 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -45,6 +45,7 @@
#include "powermgmt.h"
#ifdef HAVE_LCD_BITMAP
+#include "peakmeter.h"
#include "widgets.h"
#endif
@@ -243,6 +244,21 @@ static const struct plugin_api rockbox_api = {
/* new stuff at the end, sort into place next time
the API gets incompatible */
+#ifdef HAVE_MAS3587F
+ mpeg_set_pitch,
+
+ peak_meter_scale_value,
+ peak_meter_set_use_dbfs,
+ peak_meter_get_use_dbfs,
+#endif
+#ifdef HAVE_LCD_BITMAP
+ lcd_puts_scroll_style,
+#endif
+ mpeg_flush_and_reload_tracks,
+ strncasecmp,
+ mpeg_get_file_pos,
+ find_next_frame,
+ mpeg_get_last_header,
};
int plugin_load(char* plugin, void* parameter)