diff options
author | Max Kellermann <max@duempel.org> | 2014-02-07 21:29:31 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-02-07 21:30:49 +0100 |
commit | 77de23311792b6df7fb7b82ea5db3bc6643196fc (patch) | |
tree | 1459f8ca28253c75211c3217034bc2d3250d4094 /src/playlist/PlaylistRegistry.hxx | |
parent | 02b67edaf5c24a44d1dacce0533f2851cfbe35e7 (diff) | |
download | mpd-77de23311792b6df7fb7b82ea5db3bc6643196fc.tar.gz mpd-77de23311792b6df7fb7b82ea5db3bc6643196fc.tar.xz mpd-77de23311792b6df7fb7b82ea5db3bc6643196fc.zip |
Playlist{Any,Registry,Mapper}: move functions to PlaylistStream.cxx
Diffstat (limited to 'src/playlist/PlaylistRegistry.hxx')
-rw-r--r-- | src/playlist/PlaylistRegistry.hxx | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/src/playlist/PlaylistRegistry.hxx b/src/playlist/PlaylistRegistry.hxx index d8a24f4af..f1833b925 100644 --- a/src/playlist/PlaylistRegistry.hxx +++ b/src/playlist/PlaylistRegistry.hxx @@ -51,6 +51,9 @@ playlist_list_global_finish(void); SongEnumerator * playlist_list_open_uri(const char *uri, Mutex &mutex, Cond &cond); +SongEnumerator * +playlist_list_open_stream_suffix(InputStream &is, const char *suffix); + /** * Opens a playlist from an input stream. * @@ -68,15 +71,4 @@ playlist_list_open_stream(InputStream &is, const char *uri); bool playlist_suffix_supported(const char *suffix); -/** - * Opens a playlist from a local file. - * - * @param path_fs the path of the playlist file - * @param is_r on success, an input_stream object is returned here, - * which must be closed after the playlist_provider object is freed - * @return a playlist, or nullptr on error - */ -SongEnumerator * -playlist_list_open_path(const char *path_fs, Mutex &mutex, Cond &cond); - #endif |