summaryrefslogtreecommitdiff
path: root/src/irc/core/irc-chatnets.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/irc/core/irc-chatnets.h')
-rw-r--r--src/irc/core/irc-chatnets.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/irc/core/irc-chatnets.h b/src/irc/core/irc-chatnets.h
index 5404c0d2..b8d6fb9f 100644
--- a/src/irc/core/irc-chatnets.h
+++ b/src/irc/core/irc-chatnets.h
@@ -14,7 +14,7 @@
#define IS_IRCNET(ircnet) IS_IRC_CHATNET(ircnet)
#define IRCNET(ircnet) IRC_CHATNET(ircnet)
-typedef struct {
+struct _IRC_CHATNET_REC {
#include "chatnet-rec.h"
int max_cmds_at_once;
int cmd_queue_speed;
@@ -23,7 +23,7 @@ typedef struct {
/* max. number of kicks/msgs/mode/whois per command */
int max_kicks, max_msgs, max_modes, max_whois;
-} IRC_CHATNET_REC;
+};
void ircnet_create(IRC_CHATNET_REC *rec);