aboutsummaryrefslogtreecommitdiff
path: root/src/PlaylistCommands.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/PlaylistCommands.hxx')
-rw-r--r--src/PlaylistCommands.hxx24
1 files changed, 13 insertions, 11 deletions
diff --git a/src/PlaylistCommands.hxx b/src/PlaylistCommands.hxx
index 267ed5c9..067f428b 100644
--- a/src/PlaylistCommands.hxx
+++ b/src/PlaylistCommands.hxx
@@ -22,37 +22,39 @@
#include "command.h"
+class Client;
+
enum command_return
-handle_save(struct client *client, int argc, char *argv[]);
+handle_save(Client *client, int argc, char *argv[]);
enum command_return
-handle_load(struct client *client, int argc, char *argv[]);
+handle_load(Client *client, int argc, char *argv[]);
enum command_return
-handle_listplaylist(struct client *client, int argc, char *argv[]);
+handle_listplaylist(Client *client, int argc, char *argv[]);
enum command_return
-handle_listplaylistinfo(struct client *client, int argc, char *argv[]);
+handle_listplaylistinfo(Client *client, int argc, char *argv[]);
enum command_return
-handle_rm(struct client *client, int argc, char *argv[]);
+handle_rm(Client *client, int argc, char *argv[]);
enum command_return
-handle_rename(struct client *client, int argc, char *argv[]);
+handle_rename(Client *client, int argc, char *argv[]);
enum command_return
-handle_playlistdelete(struct client *client, int argc, char *argv[]);
+handle_playlistdelete(Client *client, int argc, char *argv[]);
enum command_return
-handle_playlistmove(struct client *client, int argc, char *argv[]);
+handle_playlistmove(Client *client, int argc, char *argv[]);
enum command_return
-handle_playlistclear(struct client *client, int argc, char *argv[]);
+handle_playlistclear(Client *client, int argc, char *argv[]);
enum command_return
-handle_playlistadd(struct client *client, int argc, char *argv[]);
+handle_playlistadd(Client *client, int argc, char *argv[]);
enum command_return
-handle_listplaylists(struct client *client, int argc, char *argv[]);
+handle_listplaylists(Client *client, int argc, char *argv[]);
#endif