summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/plugin.c1
-rw-r--r--apps/plugin.h1
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 = {
242#endif 242#endif
243 243
244 reset_poweroff_timer, 244 reset_poweroff_timer,
245 mpeg_has_changed_track,
245}; 246};
246 247
247int plugin_load(char* plugin, void* parameter) 248int 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 {
278#endif 278#endif
279 279
280 void (*reset_poweroff_timer)(void); 280 void (*reset_poweroff_timer)(void);
281 bool (*mpeg_has_changed_track)(void);
281}; 282};
282 283
283/* defined by the plugin loader (plugin.c) */ 284/* defined by the plugin loader (plugin.c) */