diff options
Diffstat (limited to 'src/irc/core/channel-rejoin.h')
-rw-r--r-- | src/irc/core/channel-rejoin.h | 13 |
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 0000000..3c46579 --- /dev/null +++ b/src/irc/core/channel-rejoin.h @@ -0,0 +1,13 @@ +#ifndef IRSSI_IRC_CORE_CHANNEL_REJOIN_H +#define IRSSI_IRC_CORE_CHANNEL_REJOIN_H + +typedef struct { + char *channel; + char *key; + unsigned int joining:1; +} REJOIN_REC; + +void channel_rejoin_init(void); +void channel_rejoin_deinit(void); + +#endif |