summaryrefslogtreecommitdiff
path: root/src/irc/core/mode-lists.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/irc/core/mode-lists.h')
-rw-r--r--src/irc/core/mode-lists.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/irc/core/mode-lists.h b/src/irc/core/mode-lists.h
index 473ba5be..ef13ae3c 100644
--- a/src/irc/core/mode-lists.h
+++ b/src/irc/core/mode-lists.h
@@ -1,7 +1,7 @@
#ifndef __MODE_LISTS_H
#define __MODE_LISTS_H
-#include "channels.h"
+#include "irc-channels.h"
typedef struct {
char *ban;
@@ -9,14 +9,14 @@ typedef struct {
time_t time;
} BAN_REC;
-BAN_REC *banlist_add(CHANNEL_REC *channel, const char *ban, const char *nick, time_t time);
-void banlist_remove(CHANNEL_REC *channel, const char *ban);
+BAN_REC *banlist_add(IRC_CHANNEL_REC *channel, const char *ban, const char *nick, time_t time);
+void banlist_remove(IRC_CHANNEL_REC *channel, const char *ban);
-BAN_REC *banlist_exception_add(CHANNEL_REC *channel, const char *ban, const char *nick, time_t time);
-void banlist_exception_remove(CHANNEL_REC *channel, const char *ban);
+BAN_REC *banlist_exception_add(IRC_CHANNEL_REC *channel, const char *ban, const char *nick, time_t time);
+void banlist_exception_remove(IRC_CHANNEL_REC *channel, const char *ban);
-void invitelist_add(CHANNEL_REC *channel, const char *mask);
-void invitelist_remove(CHANNEL_REC *channel, const char *mask);
+void invitelist_add(IRC_CHANNEL_REC *channel, const char *mask);
+void invitelist_remove(IRC_CHANNEL_REC *channel, const char *mask);
void mode_lists_init(void);
void mode_lists_deinit(void);