Пример #1
0
        public bool Configure(IntPtr owner)
        {
            IntPtr hic = Avi32Interop.ICOpen(Avi32Interop.ICTYPE_VIDEO, this.fccHandler, Avi32Interop.ICMODE_QUERY);

            if (hic != IntPtr.Zero)
            {
                bool result = Avi32Interop.ICERR_OK == Avi32Interop.ICConfigure(hic, owner);
                Avi32Interop.ICClose(hic);
                return(result);
            }
            return(false);
        }