2005-09-15 09:58:31 -04:00
|
|
|
/* Perl module */
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "elinks.h"
|
|
|
|
|
2021-08-08 15:25:08 -04:00
|
|
|
#include "intl/libintl.h"
|
2005-09-15 09:58:31 -04:00
|
|
|
#include "main/module.h"
|
|
|
|
#include "scripting/perl/core.h"
|
|
|
|
#include "scripting/perl/hooks.h"
|
|
|
|
|
|
|
|
|
|
|
|
struct module perl_scripting_module = struct_module(
|
2007-03-21 06:01:06 -04:00
|
|
|
/* name: */ N_("Perl"),
|
2005-09-15 09:58:31 -04:00
|
|
|
/* options: */ NULL,
|
|
|
|
/* hooks: */ perl_scripting_hooks,
|
|
|
|
/* submodules: */ NULL,
|
|
|
|
/* data: */ NULL,
|
|
|
|
/* init: */ init_perl,
|
|
|
|
/* done: */ cleanup_perl
|
|
|
|
);
|