aboutsummaryrefslogtreecommitdiffstats
path: root/src/playlist.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-08-26 08:27:16 +0200
committerMax Kellermann <max@duempel.org>2008-08-26 08:27:16 +0200
commitcff923b9d824773ca5446d72f3c6a54245580d87 (patch)
treea359728c9009b3e262a588d4e921a0602596a97b /src/playlist.h
parent3db333b5a46f8d147043afc4d400d18851d3606d (diff)
downloadmpd-cff923b9d824773ca5446d72f3c6a54245580d87.tar.gz
mpd-cff923b9d824773ca5446d72f3c6a54245580d87.tar.xz
mpd-cff923b9d824773ca5446d72f3c6a54245580d87.zip
playlist: eliminate unused fd parameters
Again, remove file descriptor parameters, which are not actually used. These functions can also be converted to return void.
Diffstat (limited to 'src/playlist.h')
-rw-r--r--src/playlist.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/playlist.h b/src/playlist.h
index db5243ba9..c2b4f9f90 100644
--- a/src/playlist.h
+++ b/src/playlist.h
@@ -51,7 +51,7 @@ void readPlaylistState(FILE *);
void savePlaylistState(FILE *);
-int clearPlaylist(int fd);
+void clearPlaylist(void);
int clearStoredPlaylist(int fd, char *utf8file);
@@ -71,17 +71,17 @@ int playlistInfo(int fd, int song);
int playlistId(int fd, int song);
-int stopPlaylist(int fd);
+void stopPlaylist(void);
int playPlaylist(int fd, int song, int stopOnError);
int playPlaylistById(int fd, int song, int stopOnError);
-int nextSongInPlaylist(int fd);
+void nextSongInPlaylist(void);
void syncPlayerAndPlaylist(void);
-int previousSongInPlaylist(int fd);
+void previousSongInPlaylist(void);
int shufflePlaylist(int fd);