LuaInterface.LuaDLL.lua_close C# (CSharp) Méthode

lua_close() private méthode

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

Usage Example

Exemple #1
0
 public void Close()
 {
     if (L != IntPtr.Zero)
     {
         LuaDLL.lua_close(L);
     }
 }
All Usage Examples Of LuaInterface.LuaDLL::lua_close
LuaDLL