1
0
mirror of https://github.com/irssi/irssi.git synced 2024-10-13 05:03:45 -04:00
irssi/src/perl/module.h

21 lines
523 B
C
Raw Normal View History

2019-05-01 10:33:47 -04:00
#include <irssi/src/common.h>
#ifdef NEED_PERL_H
# include <EXTERN.h>
# ifndef _SEM_SEMUN_UNDEFINED
# define HAS_UNION_SEMUN
# endif
# include <perl.h>
# undef _
# undef PACKAGE
extern PerlInterpreter *my_perl; /* must be called my_perl or some perl implementations won't work */
#endif
#define MODULE_NAME "perl/core"
/* Change this every time when some API changes between irssi's perl module
(or irssi itself) and irssi's perl libraries. */
2016-01-06 11:25:53 -05:00
#define IRSSI_PERL_API_VERSION (20011214 + IRSSI_ABI_VERSION)