From 2497fd9e7a0fae5ee4887890d7a312e0e08a93b8 Mon Sep 17 00:00:00 2001 From: Determinant Date: Mon, 22 Jun 2015 19:01:29 +0800 Subject: major change: use luarocks to manage project --- nerv.c | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 nerv.c (limited to 'nerv.c') diff --git a/nerv.c b/nerv.c deleted file mode 100644 index a59eadc..0000000 --- a/nerv.c +++ /dev/null @@ -1,38 +0,0 @@ -#include "common.h" - -extern void nerv_example_init(lua_State *L); -extern void nerv_matrix_init(lua_State *L); -extern void nerv_io_init(lua_State *L); - -static const luaL_Reg nerv_utils_methods[] = { - {"setmetatable", luaT_lua_setmetatable}, - {"getmetatable", luaT_lua_getmetatable}, - {"newmetatable", luaT_lua_newmetatable}, - {"typename", luaT_lua_typename}, - {NULL, NULL} -}; - -void nerv_utils_init(lua_State *L) { - luaL_register(L, NULL, nerv_utils_methods); -} - -int luaopen_libnerv(lua_State *L) { - lua_newtable(L); - /* duplicate table */ - lua_pushvalue(L, -1); - /* set table to global index */ - lua_setfield(L, LUA_GLOBALSINDEX, "nerv"); - /* A table reference still remains. - * - * The following initialization functions should obey to the rule that they - * maintain the stack properly to guarantee the stack stays the same before - * and after invoking the call (i.e. stay balanced). - * - * Also note that they can make use of the value at top of the stack which - * references to the `nerv` global table. */ - nerv_utils_init(L); - nerv_example_init(L); - nerv_matrix_init(L); - nerv_io_init(L); - return 1; -} -- cgit v1.2.3