replaced an unuseable function by one I need, no version bump

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4774 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jörg Hohensohn 2004-06-19 09:36:03 +00:00
parent e6f1a4aaa4
commit 92e19db34a
2 changed files with 3 additions and 2 deletions

View file

@ -210,7 +210,7 @@ static struct plugin_api rockbox_api = {
mpeg_prev,
mpeg_ff_rewind,
mpeg_next_track,
mpeg_has_changed_track,
playlist_amount,
mpeg_status,
#ifdef HAVE_LCD_BITMAP
font_get,

View file

@ -44,6 +44,7 @@
#include "mp3_playback.h"
#include "settings.h"
#include "thread.h"
#include "playlist.h"
#ifdef PLUGIN
#if defined(DEBUG) || defined(SIMULATOR)
@ -239,7 +240,7 @@ struct plugin_api {
void (*mpeg_prev)(void);
void (*mpeg_ff_rewind)(int newtime);
struct mp3entry* (*mpeg_next_track)(void);
bool (*mpeg_has_changed_track)(void);
int (*playlist_amount)(void);
int (*mpeg_status)(void);
#ifdef HAVE_LCD_BITMAP