summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/irc/core/channel-rejoin.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/irc/core/channel-rejoin.h b/src/irc/core/channel-rejoin.h
new file mode 100644
index 00000000..9a2f4476
--- /dev/null
+++ b/src/irc/core/channel-rejoin.h
@@ -0,0 +1,13 @@
+#ifndef __CHANNEL_REJOIN_H
+#define __CHANNEL_REJOIN_H
+
+typedef struct {
+ char *channel;
+ char *key;
+ int joining:1;
+} REJOIN_REC;
+
+void channel_rejoin_init(void);
+void channel_rejoin_deinit(void);
+
+#endif