| 202 | #undef SETCONSTANT |
| 203 | |
| 204 | static void LuaInit(lua_State* L) |
| 205 | { |
| 206 | int top = lua_gettop(L); |
| 207 | luaL_register(L, "liveupdate", Module_methods); |
| 208 | SetConstants(L); |
| 209 | lua_pop(L, 1); |
| 210 | assert(top == lua_gettop(L)); |
| 211 | } |
| 212 | |
| 213 | |
| 214 | void ScriptInit(lua_State* L, dmResource::HFactory factory) |
no test coverage detected