2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2022-07-14 17:58:12 +02:00
|
|
|
* Copyright 2003-2022 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2008-10-14 11:10:47 +02:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2008-10-14 11:10:47 +02:00
|
|
|
*/
|
|
|
|
|
2008-10-31 09:19:53 +01:00
|
|
|
#ifndef MPD_PLAYLIST_SAVE_H
|
|
|
|
#define MPD_PLAYLIST_SAVE_H
|
2008-10-14 11:10:47 +02:00
|
|
|
|
2014-01-20 08:57:22 +01:00
|
|
|
struct Queue;
|
2011-09-11 07:51:27 +02:00
|
|
|
struct playlist;
|
2015-03-24 20:32:23 +01:00
|
|
|
class BufferedOutputStream;
|
2014-01-07 21:39:47 +01:00
|
|
|
class DetachedSong;
|
2008-10-14 11:10:47 +02:00
|
|
|
|
|
|
|
void
|
2015-03-24 20:32:23 +01:00
|
|
|
playlist_print_song(BufferedOutputStream &os, const DetachedSong &song);
|
2008-10-14 11:10:47 +02:00
|
|
|
|
|
|
|
void
|
2015-03-24 20:32:23 +01:00
|
|
|
playlist_print_uri(BufferedOutputStream &os, const char *uri);
|
2008-10-14 11:10:47 +02:00
|
|
|
|
2022-10-02 10:19:26 +02:00
|
|
|
enum class PlaylistSaveMode {
|
|
|
|
CREATE,
|
|
|
|
APPEND,
|
|
|
|
REPLACE
|
|
|
|
};
|
|
|
|
|
2015-12-26 06:30:25 +01:00
|
|
|
void
|
2022-10-02 10:19:26 +02:00
|
|
|
spl_save_queue(const char *name_utf8, PlaylistSaveMode save_mode, const Queue &queue);
|
2009-01-25 14:11:47 +01:00
|
|
|
|
2009-02-04 22:15:37 +01:00
|
|
|
/**
|
|
|
|
* Saves a playlist object into a stored playlist file.
|
|
|
|
*/
|
2015-12-26 06:30:25 +01:00
|
|
|
void
|
2022-10-02 10:19:26 +02:00
|
|
|
spl_save_playlist(const char *name_utf8, PlaylistSaveMode save_mode, const playlist &playlist);
|
2009-02-04 22:15:37 +01:00
|
|
|
|
2008-10-14 11:10:47 +02:00
|
|
|
#endif
|