diff options
author | Timo Sirainen <cras@irssi.org> | 2000-10-03 19:10:24 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2000-10-03 19:10:24 +0000 |
commit | 391a419a1fce87ea4fef199390e23cbf0dbee589 (patch) | |
tree | 4c5d7bfd3c10e3616bba6fba7b2d0d8e62bb8412 /src/perl/common/module.h | |
parent | 6fc2a3412178385f241efa4c16d7e8b10d392042 (diff) | |
download | irssi-391a419a1fce87ea4fef199390e23cbf0dbee589.zip |
s/core/common/ - because make clean tried to delete it :)
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@715 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/perl/common/module.h')
-rw-r--r-- | src/perl/common/module.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/perl/common/module.h b/src/perl/common/module.h new file mode 100644 index 00000000..4d33a474 --- /dev/null +++ b/src/perl/common/module.h @@ -0,0 +1,37 @@ +#include <EXTERN.h> +#include <perl.h> +#include <XSUB.h> + +#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; |