aboutsummaryrefslogtreecommitdiff
path: root/src/MessageCommands.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/MessageCommands.hxx')
-rw-r--r--src/MessageCommands.hxx12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/MessageCommands.hxx b/src/MessageCommands.hxx
index 111c06ff..b10f3d8e 100644
--- a/src/MessageCommands.hxx
+++ b/src/MessageCommands.hxx
@@ -22,19 +22,21 @@
#include "command.h"
+class Client;
+
enum command_return
-handle_subscribe(struct client *client, int argc, char *argv[]);
+handle_subscribe(Client *client, int argc, char *argv[]);
enum command_return
-handle_unsubscribe(struct client *client, int argc, char *argv[]);
+handle_unsubscribe(Client *client, int argc, char *argv[]);
enum command_return
-handle_channels(struct client *client, int argc, char *argv[]);
+handle_channels(Client *client, int argc, char *argv[]);
enum command_return
-handle_read_messages(struct client *client, int argc, char *argv[]);
+handle_read_messages(Client *client, int argc, char *argv[]);
enum command_return
-handle_send_message(struct client *client, int argc, char *argv[]);
+handle_send_message(Client *client, int argc, char *argv[]);
#endif