mirror of
https://github.com/rkd77/elinks.git
synced 2025-02-02 15:09:23 -05:00
23 lines
410 B
C
23 lines
410 B
C
|
/* Lua module */
|
||
|
|
||
|
#ifdef HAVE_CONFIG_H
|
||
|
#include "config.h"
|
||
|
#endif
|
||
|
|
||
|
#include "elinks.h"
|
||
|
|
||
|
#include "main/module.h"
|
||
|
#include "scripting/lua/core.h"
|
||
|
#include "scripting/lua/hooks.h"
|
||
|
|
||
|
|
||
|
struct module lua_scripting_module = struct_module(
|
||
|
/* name: */ "Lua",
|
||
|
/* options: */ NULL,
|
||
|
/* hooks: */ lua_scripting_hooks,
|
||
|
/* submodules: */ NULL,
|
||
|
/* data: */ NULL,
|
||
|
/* init: */ init_lua,
|
||
|
/* done: */ cleanup_lua
|
||
|
);
|