Exemple #1
0
        public void Unloop(UnloopType type)
        {
            ThrowIfDisposed();

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

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

            ev_unloop (_native, type);
        }