summaryrefslogtreecommitdiffstats
path: root/apps/playlist_catalog.h
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2008-05-04 13:01:16 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2008-05-04 13:01:16 +0000
commit517aca8532af3121d9c75ff293c5269f20c0b540 (patch)
treeb8e14baa69ff80d6734d8358864ff4859dc5f566 /apps/playlist_catalog.h
parent194b2ca887f44e6c3e0244e7f4733060e7aa1618 (diff)
downloadrockbox-517aca8532af3121d9c75ff293c5269f20c0b540.tar.gz
rockbox-517aca8532af3121d9c75ff293c5269f20c0b540.zip
use the playlist catalog code to generate the playlists under Playlist > Create playlist
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17352 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/playlist_catalog.h')
-rw-r--r--apps/playlist_catalog.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/playlist_catalog.h b/apps/playlist_catalog.h
index 591906e64f..92cfa15ed9 100644
--- a/apps/playlist_catalog.h
+++ b/apps/playlist_catalog.h
@@ -32,8 +32,10 @@ bool catalog_view_playlists(void);
* sel_attr : the attributes that tell what type of file we're adding
* new_playlist : whether we want to create a new playlist or add to an
* existing one.
+ * m3u8name : filename to save the playlist to, NULL to show the keyboard
* ret : true if the file was successfully added
*/
-bool catalog_add_to_a_playlist(char* sel, int sel_attr, bool new_playlist);
+bool catalog_add_to_a_playlist(char* sel, int sel_attr,
+ bool new_playlist, char* m3u8name);
#endif