diff options
author | Timo Sirainen <cras@irssi.org> | 2001-06-27 22:56:17 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2001-06-27 22:56:17 +0000 |
commit | 89d7498019b64ae5f89b6f09f32aaa9d876a9da3 (patch) | |
tree | 1b289e5394b6dc0db092459fbabaaf049b285715 /src/perl/common/module.h | |
parent | d7342a6c4fac7956ddef141c8a2f88a1e7b0378c (diff) | |
download | irssi-89d7498019b64ae5f89b6f09f32aaa9d876a9da3.zip |
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
Diffstat (limited to 'src/perl/common/module.h')
-rw-r--r-- | src/perl/common/module.h | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/src/perl/common/module.h b/src/perl/common/module.h index 23cbad63..80d46b77 100644 --- a/src/perl/common/module.h +++ b/src/perl/common/module.h @@ -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; |