lua_pcallk() private method

private lua_pcallk ( IntPtr luaState, int nArgs, int nResults, int errfunc, int ctx, IntPtr k ) : int
luaState System.IntPtr
nArgs int
nResults int
errfunc int
ctx int
k System.IntPtr
return int
示例#1
0
 public void LuaPCallK(int nArgs, int nResults, int errfunc, IntPtr ctx, LuaKFunction k)
 {
     LuaDLL.lua_pcallk(L, nArgs, nResults, errfunc, ctx, k);
 }