1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-01 04:14:16 -04:00
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@746 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2000-10-14 01:57:27 +00:00 committed by cras
parent 35248a1225
commit 3977308cda

View File

@ -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