2000-10-01 21:56:20 +00:00
|
|
|
#include <EXTERN.h>
|
|
|
|
|
#include <perl.h>
|
|
|
|
|
#include <XSUB.h>
|
|
|
|
|
|
|
|
|
|
#undef _
|
2000-11-26 09:22:18 +00:00
|
|
|
#undef VERSION
|
2000-12-29 19:48:02 +00:00
|
|
|
#define HAVE_CONFIG_H
|
2000-11-23 21:40:07 +00:00
|
|
|
#include "../module.h"
|
2000-11-26 09:22:18 +00:00
|
|
|
|
2000-10-01 21:56:20 +00:00
|
|
|
#include "network.h"
|
|
|
|
|
#include "commands.h"
|
|
|
|
|
#include "log.h"
|
|
|
|
|
#include "rawlog.h"
|
2000-10-11 22:01:23 +00:00
|
|
|
#include "ignore.h"
|
2000-10-01 21:56:20 +00:00
|
|
|
#include "settings.h"
|
|
|
|
|
#include "masks.h"
|
2001-06-01 17:53:14 +00:00
|
|
|
#include "special-vars.h"
|
2000-10-01 21:56:20 +00:00
|
|
|
|
2000-10-18 22:45:26 +00:00
|
|
|
#include "chatnets.h"
|
2000-10-01 21:56:20 +00:00
|
|
|
#include "servers.h"
|
|
|
|
|
#include "servers-reconnect.h"
|
2000-11-26 09:22:18 +00:00
|
|
|
#include "servers-redirect.h"
|
2000-10-01 21:56:20 +00:00
|
|
|
#include "servers-setup.h"
|
|
|
|
|
#include "channels.h"
|
|
|
|
|
#include "queries.h"
|
|
|
|
|
#include "nicklist.h"
|
|
|
|
|
|
2000-11-18 15:25:04 +00:00
|
|
|
#include "fe-common/core/fe-windows.h"
|
2000-11-26 09:22:18 +00:00
|
|
|
#include "fe-common/core/formats.h"
|
|
|
|
|
#include "fe-common/core/printtext.h"
|
2000-11-25 23:05:50 +00:00
|
|
|
#include "fe-common/core/window-items.h"
|
2000-10-18 22:45:26 +00:00
|
|
|
#include "fe-common/core/themes.h"
|
|
|
|
|
#include "fe-common/core/keyboard.h"
|
2000-10-01 21:56:20 +00:00
|
|
|
|
2000-11-26 09:22:18 +00:00
|
|
|
#include "perl/perl-common.h"
|
2001-01-03 07:34:12 +00:00
|
|
|
#include "perl/perl-signals.h"
|
2000-11-26 09:22:18 +00:00
|
|
|
|
2000-10-01 21:56:20 +00:00
|
|
|
typedef COMMAND_REC *Irssi__Command;
|
|
|
|
|
typedef LOG_REC *Irssi__Log;
|
2001-01-06 21:59:28 +00:00
|
|
|
typedef LOG_ITEM_REC *Irssi__Logitem;
|
2000-10-01 21:56:20 +00:00
|
|
|
typedef RAWLOG_REC *Irssi__Rawlog;
|
2000-10-11 22:01:23 +00:00
|
|
|
typedef IGNORE_REC *Irssi__Ignore;
|
2000-10-18 22:45:26 +00:00
|
|
|
typedef MODULE_REC *Irssi__Module;
|
2000-10-01 21:56:20 +00:00
|
|
|
|
2000-10-18 22:45:26 +00:00
|
|
|
typedef CHATNET_REC *Irssi__Chatnet;
|
2000-10-01 21:56:20 +00:00
|
|
|
typedef SERVER_REC *Irssi__Server;
|
|
|
|
|
typedef SERVER_CONNECT_REC *Irssi__Connect;
|
|
|
|
|
typedef RECONNECT_REC *Irssi__Reconnect;
|
|
|
|
|
typedef CHANNEL_REC *Irssi__Channel;
|
|
|
|
|
typedef QUERY_REC *Irssi__Query;
|
|
|
|
|
typedef NICK_REC *Irssi__Nick;
|
|
|
|
|
|
2000-10-18 22:45:26 +00:00
|
|
|
typedef THEME_REC *Irssi__Theme;
|
|
|
|
|
typedef KEYINFO_REC *Irssi__Keyinfo;
|
2000-10-01 21:56:20 +00:00
|
|
|
typedef WINDOW_REC *Irssi__Window;
|
|
|
|
|
typedef WI_ITEM_REC *Irssi__Windowitem;
|
2001-04-20 19:24:20 +00:00
|
|
|
typedef TEXT_DEST_REC *Irssi__TextDest;
|