Ejemplo n.º 1
0
 public int RemoveHook()
 {
     if (Disposed)
     {
         return(-1);
     }
     return(LuaCore.SetHook(Runtime.State, 0, 0));
 }
Ejemplo n.º 2
0
 public int SetHook(EventMasks mask, int count)
 {
     if (Disposed)
     {
         return(-1);
     }
     return(LuaCore.SetHook(Runtime.State, mask, count));
 }