LuaInterface.LuaDLL.luaL_callmeta C# (CSharp) Method

luaL_callmeta() private method

private luaL_callmeta ( IntPtr luaState, int stackPos, string name ) : int
luaState System.IntPtr
stackPos int
name string
return int
        public static extern int luaL_callmeta(IntPtr luaState, int stackPos, string name);
        [DllImport(LUADLL, CallingConvention = CallingConvention.Cdecl)]
LuaDLL