LuaInterface.LuaDLL.luaL_unref C# (CSharp) Method

luaL_unref() private method

private luaL_unref ( IntPtr luaState, int registryIndex, int reference ) : void
luaState System.IntPtr
registryIndex int
reference int
return void
        public static extern void luaL_unref(IntPtr luaState, int registryIndex, int reference);
        public static void lua_unref(IntPtr luaState, int reference)

Usage Example

示例#1
0
 public override void Dispose(bool dispose)
 {
     if (dispose)
     {
         LuaDLL.luaL_unref(parent.L, LuaIndexes.LUA_REGISTRYINDEX, threadRef);
     }
 }
All Usage Examples Of LuaInterface.LuaDLL::luaL_unref
LuaDLL