2000-10-03 22:57:14 +00:00
|
|
|
#include "../common/module.h"
|
2000-10-01 20:48:48 +00:00
|
|
|
|
2000-12-06 05:03:11 +00:00
|
|
|
#include "irc.h"
|
2000-10-01 20:48:48 +00:00
|
|
|
#include "irc-servers.h"
|
|
|
|
|
#include "irc-channels.h"
|
|
|
|
|
#include "irc-queries.h"
|
|
|
|
|
|
|
|
|
|
#include "bans.h"
|
|
|
|
|
#include "modes.h"
|
|
|
|
|
#include "mode-lists.h"
|
|
|
|
|
#include "netsplit.h"
|
|
|
|
|
|
|
|
|
|
#include "dcc/dcc.h"
|
|
|
|
|
#include "flood/autoignore.h"
|
|
|
|
|
#include "notifylist/notifylist.h"
|
|
|
|
|
|
|
|
|
|
typedef IRC_SERVER_REC *Irssi__Irc__Server;
|
|
|
|
|
typedef IRC_SERVER_CONNECT_REC *Irssi__Irc__Connect;
|
|
|
|
|
typedef IRC_CHANNEL_REC *Irssi__Irc__Channel;
|
|
|
|
|
typedef QUERY_REC *Irssi__Irc__Query;
|
2000-12-06 05:03:11 +00:00
|
|
|
typedef NICK_REC *Irssi__Irc__Nick;
|
2000-10-01 20:48:48 +00:00
|
|
|
|
|
|
|
|
typedef BAN_REC *Irssi__Irc__Ban;
|
|
|
|
|
typedef DCC_REC *Irssi__Irc__Dcc;
|
|
|
|
|
typedef NETSPLIT_REC *Irssi__Irc__Netsplit;
|
|
|
|
|
typedef NETSPLIT_SERVER_REC *Irssi__Irc__Netsplitserver;
|
|
|
|
|
typedef AUTOIGNORE_REC *Irssi__Irc__Autoignore;
|
|
|
|
|
typedef NOTIFYLIST_REC *Irssi__Irc__Notifylist;
|