aboutsummaryrefslogtreecommitdiffstats
path: root/src/playlist.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-10-22 17:23:11 +0200
committerMax Kellermann <max@duempel.org>2008-10-22 17:23:11 +0200
commit1da921f03cc3063dc309d0e1afdcd41e201f55a2 (patch)
tree9662e1635b2404a429fc0b725716ac7efa40d9c5 /src/playlist.h
parentac853b6165f8c9b0caa414d4c7182715e28152f6 (diff)
downloadmpd-1da921f03cc3063dc309d0e1afdcd41e201f55a2.tar.gz
mpd-1da921f03cc3063dc309d0e1afdcd41e201f55a2.tar.xz
mpd-1da921f03cc3063dc309d0e1afdcd41e201f55a2.zip
stored_playlist: moved functions from playlist.c
The two functions clearStoredPlaylist() and addToStoredPlaylist() don't belong into playlist.c. clearStoredPlaylist() was a wrapper for spl_clear(), and is converted into a CPP macro for now.
Diffstat (limited to 'src/playlist.h')
-rw-r--r--src/playlist.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/playlist.h b/src/playlist.h
index e104a48e2..6aa5325c0 100644
--- a/src/playlist.h
+++ b/src/playlist.h
@@ -71,8 +71,6 @@ void savePlaylistState(FILE *);
void clearPlaylist(void);
-int clearStoredPlaylist(const char *utf8file);
-
/**
* Appends a local file (outside the music database) to the playlist,
* but only if the file's owner is equal to the specified uid.
@@ -82,8 +80,6 @@ playlist_append_file(const char *path, int uid, int *added_id);
enum playlist_result addToPlaylist(const char *file, int *added_id);
-int addToStoredPlaylist(const char *file, const char *utf8file);
-
enum playlist_result
addSongToPlaylist(struct song *song, int *added_id);