예제 #1
0
        public VlcException()
            : base()
        {
            IntPtr errorPointer = LibVlc.libvlc_errmsg();

            _err = errorPointer == IntPtr.Zero ? "VLC Exception"
                : Marshal.PtrToStringAuto(errorPointer);
        }