diff options
author | Timo Sirainen <cras@irssi.org> | 2000-10-14 01:57:27 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2000-10-14 01:57:27 +0000 |
commit | 3977308cda8dd4a97d48be4cf58e6f00c29e59ee (patch) | |
tree | ab795770b320938b123c335dff43201d5253c7e5 /src/irc/core/channel-rejoin.h | |
parent | 35248a12257c4bad82010e644890d9945dd1a277 (diff) | |
download | irssi-3977308cda8dd4a97d48be4cf58e6f00c29e59ee.zip |
added
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@746 dbcabf3a-b0e7-0310-adc4-f8d773084564
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 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 |