mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
24 lines
456 B
C
24 lines
456 B
C
/* Perl module */
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include "elinks.h"
|
|
|
|
#include "intl/gettext/libintl.h"
|
|
#include "main/module.h"
|
|
#include "scripting/perl/core.h"
|
|
#include "scripting/perl/hooks.h"
|
|
|
|
|
|
struct module perl_scripting_module = struct_module(
|
|
/* name: */ N_("Perl"),
|
|
/* options: */ NULL,
|
|
/* hooks: */ perl_scripting_hooks,
|
|
/* submodules: */ NULL,
|
|
/* data: */ NULL,
|
|
/* init: */ init_perl,
|
|
/* done: */ cleanup_perl
|
|
);
|