diff options
author | Linus Nielsen Feltzing <linus@haxx.se> | 2004-07-08 08:32:18 +0000 |
---|---|---|
committer | Linus Nielsen Feltzing <linus@haxx.se> | 2004-07-08 08:32:18 +0000 |
commit | 44485bb3d83932d901110877dcbf10ddd4d6d548 (patch) | |
tree | d051e403e63c26b85888fdceb0a09d31d7662d57 | |
parent | 3c9e3e89145f39cba0dfdea87d00a9a9a52961c0 (diff) |
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
-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) */ |