2023-03-06 14:42:04 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
// Copyright The Music Player Daemon Project
|
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
|