1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-01-03 14:57:44 -05:00
elinks/src/scripting/smjs/smjs.cpp
2022-07-31 15:33:22 +02:00

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
);