1
0
Fork 0
forked from len0rd/rockbox

Added mpeg_has_changed_track() to the plugin API (again)

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4847 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2004-07-08 08:32:18 +00:00
parent 3c9e3e8914
commit 44485bb3d8
2 changed files with 2 additions and 0 deletions

View file

@ -242,6 +242,7 @@ static struct plugin_api rockbox_api = {
#endif
reset_poweroff_timer,
mpeg_has_changed_track,
};
int plugin_load(char* plugin, void* parameter)

View file

@ -278,6 +278,7 @@ struct plugin_api {
#endif
void (*reset_poweroff_timer)(void);
bool (*mpeg_has_changed_track)(void);
};
/* defined by the plugin loader (plugin.c) */