luaL_unref() private method

private luaL_unref ( IntPtr luaState, int registryIndex, int reference ) : void
luaState System.IntPtr
registryIndex int
reference int
return void
示例#1
0
 public override void Dispose(bool dispose)
 {
     if (dispose)
     {
         LuaDLL.luaL_unref(parent.L, LuaIndexes.LUA_REGISTRYINDEX, threadRef);
     }
 }
示例#2
0
 public static void lua_unref(IntPtr luaState, int reference)
 {
     LuaDLL.luaL_unref(luaState, LuaIndexes.LUA_REGISTRYINDEX, reference);
 }