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"
|
2001-02-02 22:10:20 +00:00
|
|
|
#include "irc-nicklist.h"
|
2000-10-01 20:48:48 +00:00
|
|
|
|
|
|
|
|
#include "bans.h"
|
|
|
|
|
#include "modes.h"
|
|
|
|
|
#include "mode-lists.h"
|
|
|
|
|
#include "netsplit.h"
|
2001-11-11 18:59:19 +00:00
|
|
|
#include "servers-redirect.h"
|
2000-10-01 20:48:48 +00:00
|
|
|
|
|
|
|
|
#include "dcc/dcc.h"
|
2001-06-29 20:41:35 +00:00
|
|
|
#include "dcc/dcc-file.h"
|
2001-01-28 16:15:55 +00:00
|
|
|
#include "dcc/dcc-chat.h"
|
|
|
|
|
#include "dcc/dcc-get.h"
|
2001-02-20 02:37:01 +00:00
|
|
|
#include "dcc/dcc-send.h"
|
2000-10-01 20:48:48 +00:00
|
|
|
#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;
|
2001-02-20 02:37:01 +00:00
|
|
|
typedef CHAT_DCC_REC *Irssi__Irc__Dcc__Chat;
|
|
|
|
|
typedef GET_DCC_REC *Irssi__Irc__Dcc__Get;
|
|
|
|
|
typedef SEND_DCC_REC *Irssi__Irc__Dcc__Send;
|
2000-10-01 20:48:48 +00:00
|
|
|
typedef NETSPLIT_REC *Irssi__Irc__Netsplit;
|
|
|
|
|
typedef NETSPLIT_SERVER_REC *Irssi__Irc__Netsplitserver;
|
2001-01-07 09:59:21 +00:00
|
|
|
typedef NETSPLIT_CHAN_REC *Irssi__Irc__Netsplitchannel;
|
2000-10-01 20:48:48 +00:00
|
|
|
typedef NOTIFYLIST_REC *Irssi__Irc__Notifylist;
|