blob: 1dd4a37040708169004e5854bb55c99d35f75832 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <bee/lua/module.h>
extern "C" int luaopen_lpeglabel (lua_State *L);
static ::bee::lua::callfunc _init(::bee::lua::register_module, "lpeglabel", luaopen_lpeglabel);
#ifdef CODE_FORMAT
extern "C" int luaopen_code_format(lua_State *L);
static ::bee::lua::callfunc _init_code_format(::bee::lua::register_module, "code_format",
luaopen_code_format);
#endif
|