aboutsummaryrefslogtreecommitdiffstats
path: root/src/playlist.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/playlist.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/playlist.h b/src/playlist.h
index c5f291101..286450103 100644
--- a/src/playlist.h
+++ b/src/playlist.h
@@ -40,10 +40,16 @@ void savePlaylistState(FILE *);
int clearPlaylist(int fd);
+int clearStoredPlaylist(int fd, char *utf8file);
+
int addToPlaylist(int fd, char *file, int printId);
+int addToStoredPlaylist(int fd, char *file, char *utf8file);
+
int addSongToPlaylist(int fd, Song * song, int printId);
+int addSongToStoredPlaylist(int fd, Song *song, char *utf8file);
+
int showPlaylist(int fd);
int deleteFromPlaylist(int fd, int song);