diff options
Diffstat (limited to 'src/playlist.h')
-rw-r--r-- | src/playlist.h | 8 |
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); |