diff options
author | Max Kellermann <max@duempel.org> | 2008-09-07 13:44:12 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-09-07 13:44:12 +0200 |
commit | a8b225f947fc2d5e464222ea9b535c49fbce9ac9 (patch) | |
tree | d729d63421e38d9223771729a2fa9b862e94aab0 /src/storedPlaylist.h | |
parent | 8d2830b3f9ab52e1b2dd54d82ae3aaf39e61abe8 (diff) | |
download | mpd-a8b225f947fc2d5e464222ea9b535c49fbce9ac9.tar.gz mpd-a8b225f947fc2d5e464222ea9b535c49fbce9ac9.tar.xz mpd-a8b225f947fc2d5e464222ea9b535c49fbce9ac9.zip |
playlist: don't pass "fd" to storedPlaylist.c functions
Return an "enum playlist_result" value instead of calling
commandError() in storedPlaylist.c.
Diffstat (limited to '')
-rw-r--r-- | src/storedPlaylist.h | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/src/storedPlaylist.h b/src/storedPlaylist.h index a7806386b..964669d35 100644 --- a/src/storedPlaylist.h +++ b/src/storedPlaylist.h @@ -23,14 +23,21 @@ #include "list.h" #include "playlist.h" -List *loadStoredPlaylist(int fd, const char *utf8path); +List *loadStoredPlaylist(const char *utf8path); -int moveSongInStoredPlaylistByPath(int fd, const char *utf8path, int src, int dest); -int removeAllFromStoredPlaylistByPath(int fd, const char *utf8path); -int removeOneSongFromStoredPlaylistByPath(int fd, const char *utf8path, int pos); +enum playlist_result +moveSongInStoredPlaylistByPath(const char *utf8path, int src, int dest); -int appendSongToStoredPlaylistByPath(int fd, const char *utf8path, Song *song); +enum playlist_result +removeAllFromStoredPlaylistByPath(const char *utf8path); -int renameStoredPlaylist(int fd, const char *utf8from, const char *utf8to); +enum playlist_result +removeOneSongFromStoredPlaylistByPath(const char *utf8path, int pos); + +enum playlist_result +appendSongToStoredPlaylistByPath(const char *utf8path, Song *song); + +enum playlist_result +renameStoredPlaylist(const char *utf8from, const char *utf8to); #endif |