mirror of
https://github.com/rkd77/elinks.git
synced 2025-01-03 14:57:44 -05:00
24 lines
492 B
C++
24 lines
492 B
C++
/* ECMAScript browser scripting module */
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include "elinks.h"
|
|
|
|
#include "intl/libintl.h"
|
|
#include "main/module.h"
|
|
#include "scripting/smjs/core.h"
|
|
#include "scripting/smjs/hooks.h"
|
|
|
|
|
|
struct module smjs_scripting_module = struct_module(
|
|
/* name: */ N_("Spidermonkey ECMAScript"),
|
|
/* options: */ NULL,
|
|
/* events: */ smjs_scripting_hooks,
|
|
/* submodules: */ NULL,
|
|
/* data: */ NULL,
|
|
/* init: */ init_smjs,
|
|
/* done: */ cleanup_smjs
|
|
);
|