summaryrefslogtreecommitdiff
path: root/src/irc/bot/botnet-users.h
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2000-05-29 23:31:48 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2000-05-29 23:31:48 +0000
commited140195300797b185b0fa8442166cdd1c927a73 (patch)
tree7c7e672ae8d7a81287ecf033b78b07f537e2925d /src/irc/bot/botnet-users.h
parent9747762593fc7ac193887fbf5f83226ed3f6ce14 (diff)
downloadirssi-ed140195300797b185b0fa8442166cdd1c927a73.zip
Sending files through botnet works.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@253 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/irc/bot/botnet-users.h')
-rw-r--r--src/irc/bot/botnet-users.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/irc/bot/botnet-users.h b/src/irc/bot/botnet-users.h
new file mode 100644
index 00000000..303a0890
--- /dev/null
+++ b/src/irc/bot/botnet-users.h
@@ -0,0 +1,13 @@
+#ifndef __BOTNET_USERS_H
+#define __BOTNET_USERS_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