mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +02:00
Moved fe_perl module to use Irssi::UI .. this breaks several scripts that
use UI-specific code, but simply adding the "use Irssi::UI;" after use Irssi; should work. make install now removes libfe_perl.* files from global module directory, but if you have it somewhere else you should manually remove it. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1582 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
d7342a6c4f
commit
89d7498019
15 changed files with 157 additions and 124 deletions
|
|
@ -8,6 +8,7 @@
|
|||
#include "../module.h"
|
||||
|
||||
#include "network.h"
|
||||
#include "levels.h"
|
||||
#include "commands.h"
|
||||
#include "log.h"
|
||||
#include "rawlog.h"
|
||||
|
|
@ -15,6 +16,7 @@
|
|||
#include "settings.h"
|
||||
#include "masks.h"
|
||||
#include "special-vars.h"
|
||||
#include "window-item-def.h"
|
||||
|
||||
#include "chatnets.h"
|
||||
#include "servers.h"
|
||||
|
|
@ -25,13 +27,6 @@
|
|||
#include "queries.h"
|
||||
#include "nicklist.h"
|
||||
|
||||
#include "fe-common/core/fe-windows.h"
|
||||
#include "fe-common/core/formats.h"
|
||||
#include "fe-common/core/printtext.h"
|
||||
#include "fe-common/core/window-items.h"
|
||||
#include "fe-common/core/themes.h"
|
||||
#include "fe-common/core/keyboard.h"
|
||||
|
||||
#include "perl/perl-common.h"
|
||||
#include "perl/perl-signals.h"
|
||||
|
||||
|
|
@ -41,6 +36,7 @@ typedef LOG_ITEM_REC *Irssi__Logitem;
|
|||
typedef RAWLOG_REC *Irssi__Rawlog;
|
||||
typedef IGNORE_REC *Irssi__Ignore;
|
||||
typedef MODULE_REC *Irssi__Module;
|
||||
typedef WI_ITEM_REC *Irssi__Windowitem;
|
||||
|
||||
typedef CHATNET_REC *Irssi__Chatnet;
|
||||
typedef SERVER_REC *Irssi__Server;
|
||||
|
|
@ -49,9 +45,3 @@ typedef RECONNECT_REC *Irssi__Reconnect;
|
|||
typedef CHANNEL_REC *Irssi__Channel;
|
||||
typedef QUERY_REC *Irssi__Query;
|
||||
typedef NICK_REC *Irssi__Nick;
|
||||
|
||||
typedef THEME_REC *Irssi__Theme;
|
||||
typedef KEYINFO_REC *Irssi__Keyinfo;
|
||||
typedef WINDOW_REC *Irssi__Window;
|
||||
typedef WI_ITEM_REC *Irssi__Windowitem;
|
||||
typedef TEXT_DEST_REC *Irssi__TextDest;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue