blob: 9a2f4476bddd74cbcee1ebeaa5e56670d8d4ee70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
|