From f8ea75ceb144fd7efaf0c582f10d06a05420235f Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Sun, 1 Oct 2000 21:56:20 +0000 Subject: [PATCH] added git-svn-id: http://svn.irssi.org/repos/irssi/trunk@709 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/perl/core/module.h | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 src/perl/core/module.h diff --git a/src/perl/core/module.h b/src/perl/core/module.h new file mode 100644 index 00000000..4d33a474 --- /dev/null +++ b/src/perl/core/module.h @@ -0,0 +1,37 @@ +#include +#include +#include + +#undef _ +#include "common.h" +#include "network.h" +#include "commands.h" +#include "log.h" +#include "rawlog.h" +#include "settings.h" +#include "masks.h" + +#include "servers.h" +#include "servers-reconnect.h" +#include "servers-setup.h" +#include "channels.h" +#include "queries.h" +#include "nicklist.h" + +#include "perl/perl-common.h" + +#include "fe-common/core/windows.h" + +typedef COMMAND_REC *Irssi__Command; +typedef LOG_REC *Irssi__Log; +typedef RAWLOG_REC *Irssi__Rawlog; + +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; + +typedef WINDOW_REC *Irssi__Window; +typedef WI_ITEM_REC *Irssi__Windowitem;