0
0
mirror of https://github.com/rkd77/elinks.git synced 2025-06-30 22:19:29 -04:00
2005-10-21 09:14:07 +02:00

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