diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2009-05-31 14:40:25 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2009-05-31 14:40:25 +0000 |
| commit | 8b8768bfff48d148795b1579d330461abd99b980 (patch) | |
| tree | 61cd727fe427c14f8d060db36c252186899e7126 /apps/plugin.h | |
| parent | f0aa8ba95d8171ebe73919078da91834605dd561 (diff) | |
| download | rockbox-8b8768bfff48d148795b1579d330461abd99b980.zip rockbox-8b8768bfff48d148795b1579d330461abd99b980.tar.gz rockbox-8b8768bfff48d148795b1579d330461abd99b980.tar.bz2 rockbox-8b8768bfff48d148795b1579d330461abd99b980.tar.xz | |
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.h')
| -rw-r--r-- | apps/plugin.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index 3346a76..84501ac 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -813,6 +813,10 @@ struct plugin_api { #if defined(HAVE_TAGCACHE) && defined(HAVE_TC_RAMCACHE) bool (*tagcache_fill_tags)(struct mp3entry *id3, const char *filename); #endif + int (*playlist_add)(const char *filename); + void (*playlist_sync)(struct playlist_info* playlist); + int (*playlist_remove_all_tracks)(struct playlist_info *playlist); + int (*playlist_create)(const char *dir, const char *file); }; /* plugin header */ |