summaryrefslogtreecommitdiff
path: root/src/irc/bot/bot-commands.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/irc/bot/bot-commands.h')
-rw-r--r--src/irc/bot/bot-commands.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/irc/bot/bot-commands.h b/src/irc/bot/bot-commands.h
new file mode 100644
index 00000000..4fa35d98
--- /dev/null
+++ b/src/irc/bot/bot-commands.h
@@ -0,0 +1,13 @@
+#ifndef __BOT_COMMANDS_H
+#define __BOT_COMMANDS_H
+
+void botcmd_user_add(const char *nick);
+void botcmd_user_set_flags(USER_REC *user, int flags);
+void botcmd_user_set_channel_flags(USER_REC *user, const char *channel, int flags);
+
+void botcmd_user_add_mask(USER_REC *user, const char *mask);
+void botcmd_user_set_mask_notflags(USER_REC *user, const char *mask, int not_flags);
+
+void botcmd_user_set_password(USER_REC *user, const char *password);
+
+#endif