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

lua_callk() private méthode

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

Usage Example

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