LuaInterface.LuaDLL.lua_callk C# (CSharp) Method

lua_callk() private method

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
return int
        public static extern int lua_callk(IntPtr luaState, int nArgs, int nResults,int ctx,IntPtr k);

Usage Example

Exemplo n.º 1
0
 public void LuaCallK(int nArgs, int nResults, IntPtr ctx, LuaKFunction k)
 {
     LuaDLL.lua_callk(L, nArgs, nResults, ctx, k);
 }
LuaDLL