Пример #1
0
 public static extern int lua_sethook(IntPtr L, LuaHookFunc func, int mask, int count);
Пример #2
0
 public int LuaSetHook(LuaHookFunc func, int mask, int count)
 {
     return(LuaDLL.lua_sethook(L, func, mask, count));
 }