Exemplo n.º 1
0
        public void Unloop(UnloopType type)
        {
            ThrowIfDisposed();

            if (IsV4)
            {
                ev_break(_native, type);
            }
            else
            {
                ev_unloop(_native, type);
            }
        }
Exemplo n.º 2
0
 private static extern void ev_break(IntPtr loop, UnloopType flags);
Exemplo n.º 3
0
        public void Unloop(UnloopType type)
        {
            ThrowIfDisposed();

            if (IsV4)
                ev_break(_native, type);
            else
                ev_unloop(_native, type);
        }
Exemplo n.º 4
0
 private static extern void ev_unloop(IntPtr loop, UnloopType flags);
Exemplo n.º 5
0
        public void Unloop(UnloopType type)
        {
            ThrowIfDisposed ();

            ev_unloop (_native, type);
        }