lua_callk() 개인적인 메소드

private lua_callk ( IntPtr luaState, int nArgs, int nResults, int ctx, IntPtr k ) : int
luaState System.IntPtr
nArgs int
nResults int
ctx int
k System.IntPtr
리턴 int
예제 #1
0
 public void LuaCallK(int nArgs, int nResults, IntPtr ctx, LuaKFunction k)
 {
     LuaDLL.lua_callk(L, nArgs, nResults, ctx, k);
 }