blob: 8fe065a8da934d15a32516bc95d006659d79347d (
plain)
1
2
3
4
5
6
7
8
|
#include <bee/lua/binding.h>
extern "C" int luaopen_lpeglabel (lua_State *L);
static ::bee::lua::callfunc _init(::bee::lua::register_module, "lpeglabel", luaopen_lpeglabel);
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);
|