diff options
-rw-r--r-- | apps/plugin.c | 1 | ||||
-rw-r--r-- | apps/plugin.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index b7646c021d..bc7707db55 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -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) diff --git a/apps/plugin.h b/apps/plugin.h index 171ed7f1af..d1b743fb01 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -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) */ |