diff options
Diffstat (limited to 'src/command/QueueCommands.hxx')
-rw-r--r-- | src/command/QueueCommands.hxx | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/src/command/QueueCommands.hxx b/src/command/QueueCommands.hxx index 48641d2d1..bccb9a370 100644 --- a/src/command/QueueCommands.hxx +++ b/src/command/QueueCommands.hxx @@ -23,66 +23,66 @@ #include "CommandResult.hxx" class Client; -template<typename T> struct ConstBuffer; +class Request; CommandResult -handle_add(Client &client, ConstBuffer<const char *> args); +handle_add(Client &client, Request args); CommandResult -handle_addid(Client &client, ConstBuffer<const char *> args); +handle_addid(Client &client, Request args); CommandResult -handle_rangeid(Client &client, ConstBuffer<const char *> args); +handle_rangeid(Client &client, Request args); CommandResult -handle_delete(Client &client, ConstBuffer<const char *> args); +handle_delete(Client &client, Request args); CommandResult -handle_deleteid(Client &client, ConstBuffer<const char *> args); +handle_deleteid(Client &client, Request args); CommandResult -handle_playlist(Client &client, ConstBuffer<const char *> args); +handle_playlist(Client &client, Request args); CommandResult -handle_shuffle(Client &client, ConstBuffer<const char *> args); +handle_shuffle(Client &client, Request args); CommandResult -handle_clear(Client &client, ConstBuffer<const char *> args); +handle_clear(Client &client, Request args); CommandResult -handle_plchanges(Client &client, ConstBuffer<const char *> args); +handle_plchanges(Client &client, Request args); CommandResult -handle_plchangesposid(Client &client, ConstBuffer<const char *> args); +handle_plchangesposid(Client &client, Request args); CommandResult -handle_playlistinfo(Client &client, ConstBuffer<const char *> args); +handle_playlistinfo(Client &client, Request args); CommandResult -handle_playlistid(Client &client, ConstBuffer<const char *> args); +handle_playlistid(Client &client, Request args); CommandResult -handle_playlistfind(Client &client, ConstBuffer<const char *> args); +handle_playlistfind(Client &client, Request args); CommandResult -handle_playlistsearch(Client &client, ConstBuffer<const char *> args); +handle_playlistsearch(Client &client, Request args); CommandResult -handle_prio(Client &client, ConstBuffer<const char *> args); +handle_prio(Client &client, Request args); CommandResult -handle_prioid(Client &client, ConstBuffer<const char *> args); +handle_prioid(Client &client, Request args); CommandResult -handle_move(Client &client, ConstBuffer<const char *> args); +handle_move(Client &client, Request args); CommandResult -handle_moveid(Client &client, ConstBuffer<const char *> args); +handle_moveid(Client &client, Request args); CommandResult -handle_swap(Client &client, ConstBuffer<const char *> args); +handle_swap(Client &client, Request args); CommandResult -handle_swapid(Client &client, ConstBuffer<const char *> args); +handle_swapid(Client &client, Request args); #endif |