2019-05-01 10:33:47 -04:00
|
|
|
#include <irssi/src/common.h>
|
2007-04-23 04:30:36 -04:00
|
|
|
|
2001-07-29 05:17:53 -04:00
|
|
|
#ifdef NEED_PERL_H
|
|
|
|
# include <EXTERN.h>
|
|
|
|
# ifndef _SEM_SEMUN_UNDEFINED
|
|
|
|
# define HAS_UNION_SEMUN
|
|
|
|
# endif
|
|
|
|
# include <perl.h>
|
2001-01-03 02:34:12 -05:00
|
|
|
|
2001-07-29 05:17:53 -04:00
|
|
|
# undef _
|
|
|
|
# undef PACKAGE
|
2001-01-03 02:34:12 -05:00
|
|
|
|
2001-07-29 05:17:53 -04:00
|
|
|
extern PerlInterpreter *my_perl; /* must be called my_perl or some perl implementations won't work */
|
2001-01-03 02:34:12 -05:00
|
|
|
#endif
|
|
|
|
|
2001-08-13 20:41:59 -04:00
|
|
|
#define MODULE_NAME "perl/core"
|
2001-10-20 09:19:25 -04:00
|
|
|
|
|
|
|
/* Change this every time when some API changes between irssi's perl module
|
2001-11-11 17:39:56 -05:00
|
|
|
(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)
|