diff options
author | Max Kellermann <max@duempel.org> | 2009-01-24 14:52:04 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-24 14:52:04 +0100 |
commit | 627d590ce524faf7ec197c54e65076107af27fe9 (patch) | |
tree | e3b594abc6c2c12c6ea054a77aabc09bc5ffd59b /src/playlist.h | |
parent | d449d6abab3c263ae6bcfe2ae5e4465d7a1d149f (diff) | |
download | mpd-627d590ce524faf7ec197c54e65076107af27fe9.tar.gz mpd-627d590ce524faf7ec197c54e65076107af27fe9.tar.xz mpd-627d590ce524faf7ec197c54e65076107af27fe9.zip |
command: use queue_print_*()
Replaced several wrapper functions from playlist.c, and make command.c
use the queue print functions directly.
Diffstat (limited to 'src/playlist.h')
-rw-r--r-- | src/playlist.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/playlist.h b/src/playlist.h index 3875aaed0..7fe10cb40 100644 --- a/src/playlist.h +++ b/src/playlist.h @@ -120,25 +120,10 @@ enum playlist_result addToPlaylist(const char *file, unsigned *added_id); enum playlist_result addSongToPlaylist(struct song *song, unsigned *added_id); -void showPlaylist(struct client *client); - enum playlist_result deleteFromPlaylist(unsigned song); enum playlist_result deleteFromPlaylistById(unsigned song); -/** - * Send detailed information about a range of songs in the playlist to - * a client. - * - * @param client the client which has requested information - * @param start the index of the first song (including) - * @param end the index of the last song (excluding) - */ -enum playlist_result -playlistInfo(struct client *client, unsigned start, unsigned end); - -enum playlist_result playlistId(struct client *client, int song); - void stopPlaylist(void); enum playlist_result playPlaylist(int song); @@ -190,10 +175,6 @@ enum playlist_result seekSongInPlaylistById(unsigned id, float seek_time); void playlistVersionChange(void); -int playlistChanges(struct client *client, uint32_t version); - -int playlistChangesPosId(struct client *client, uint32_t version); - void searchForSongsInPlaylist(struct client *client, unsigned numItems, const LocateTagItem *items); |