1
0
mirror of https://github.com/irssi/irssi.git synced 2024-06-23 06:35:36 +00:00
irssi/src/irc/core/channel-rejoin.h

14 lines
240 B
C
Raw Normal View History

2019-05-01 20:22:22 +00:00
#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