public void Clear()
        {
            VerifyObjectIsNotDisposed();
            // Clear the vlc log source
            libvlc_exception_t exc = new libvlc_exception_t();

            LibVlcInterop.libvlc_exception_init(ref exc);
            LibVlcInterop.libvlc_log_clear(descriptor, ref exc);
            if (exc.b_raised != 0)
            {
                throw new VlcInternalException(exc.Message);
            }
        }
Exemple #2
0
 public void Clear()
 {
     VerifyObjectIsNotDisposed();
     // Clear the vlc log source
     LibVlcInterop.libvlc_log_clear(descriptor);
 }