Exemplo n.º 1
0
 public static extern int lua_sethook(IntPtr L, LuaHookFunc func, int mask, int count);
Exemplo n.º 2
0
 public int LuaSetHook(LuaHookFunc func, int mask, int count)
 {
     return(LuaDLL.lua_sethook(L, func, mask, count));
 }