LuaInterface.LuaDLL.lua_close C# (CSharp) Method

lua_close() private method

private lua_close ( IntPtr luaState ) : void
luaState System.IntPtr
return void
        public static extern void lua_close(IntPtr luaState);
        [DllImport(LUADLL, CallingConvention = CallingConvention.Cdecl)]

Usage Example

示例#1
0
文件: LuaState.cs 项目: sakyaer/emoji
 public void Close()
 {
     if (L != IntPtr.Zero)
     {
         LuaDLL.lua_close(L);
     }
 }
All Usage Examples Of LuaInterface.LuaDLL::lua_close
LuaDLL