diff options
Diffstat (limited to 'src/PlaylistSave.hxx')
-rw-r--r-- | src/PlaylistSave.hxx | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/src/PlaylistSave.hxx b/src/PlaylistSave.hxx index 71e0a8189..914c8c086 100644 --- a/src/PlaylistSave.hxx +++ b/src/PlaylistSave.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2003-2013 The Music Player Daemon Project + * Copyright (C) 2003-2014 The Music Player Daemon Project * http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify @@ -24,14 +24,14 @@ #include <stdio.h> -struct Song; struct Queue; struct playlist; struct PlayerControl; +class DetachedSong; class Error; void -playlist_print_song(FILE *fp, const Song &song); +playlist_print_song(FILE *file, const DetachedSong &song); void playlist_print_uri(FILE *fp, const char *uri); @@ -48,14 +48,4 @@ spl_save_queue(const char *name_utf8, const Queue &queue); PlaylistResult spl_save_playlist(const char *name_utf8, const playlist &playlist); -/** - * Loads a stored playlist file, and append all songs to the global - * playlist. - */ -bool -playlist_load_spl(struct playlist &playlist, PlayerControl &pc, - const char *name_utf8, - unsigned start_index, unsigned end_index, - Error &error); - #endif |