summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2009-05-31 14:40:25 +0000
committerThomas Martitz <kugel@rockbox.org>2009-05-31 14:40:25 +0000
commit8b8768bfff48d148795b1579d330461abd99b980 (patch)
tree61cd727fe427c14f8d060db36c252186899e7126 /apps/plugin.c
parentf0aa8ba95d8171ebe73919078da91834605dd561 (diff)
downloadrockbox-8b8768bfff48d148795b1579d330461abd99b980.tar.gz
rockbox-8b8768bfff48d148795b1579d330461abd99b980.zip
Commit the first part of FS#10263: Starting playback from within pictureflow, by creating a playlist from the tracklist and playing it. The database integration part is postponed until it's more featured.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21143 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index dfdcb01b19..31990a9b00 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -649,8 +649,12 @@ static const struct plugin_api rockbox_api = {
649 action_get_touchscreen_press, 649 action_get_touchscreen_press,
650#endif 650#endif
651#if defined(HAVE_TAGCACHE) && defined(HAVE_TC_RAMCACHE) 651#if defined(HAVE_TAGCACHE) && defined(HAVE_TC_RAMCACHE)
652 tagcache_fill_tags 652 tagcache_fill_tags,
653#endif 653#endif
654 playlist_add,
655 playlist_sync,
656 playlist_remove_all_tracks,
657 playlist_create,
654}; 658};
655 659
656int plugin_load(const char* plugin, const void* parameter) 660int plugin_load(const char* plugin, const void* parameter)