[][src]Struct winapi::um::wincodec::IWICBitmapDecoder

#[repr(C)]
pub struct IWICBitmapDecoder { pub lpVtbl: *const IWICBitmapDecoderVtbl, }

Fields

lpVtbl: *const IWICBitmapDecoderVtbl

Methods

impl IWICBitmapDecoder[src]

pub unsafe fn QueryCapability(
    &self,
    pIStream: *const IStream,
    pdwCapability: *mut DWORD
) -> HRESULT
[src]

pub unsafe fn Initialize(
    &self,
    pIStream: *const IStream,
    cacheOptions: WICDecodeOptions
) -> HRESULT
[src]

pub unsafe fn GetContainerFormat(
    &self,
    pguidContainerFormat: *mut GUID
) -> HRESULT
[src]

pub unsafe fn GetDecoderInfo(
    &self,
    ppIDecoderInfo: *mut *mut IWICBitmapDecoderInfo
) -> HRESULT
[src]

pub unsafe fn CopyPalette(&self, pIPalette: *const IWICPalette) -> HRESULT[src]

pub unsafe fn GetMetadataQueryReader(
    &self,
    ppIMetadataQueryReader: *mut *mut IWICMetadataQueryReader
) -> HRESULT
[src]

pub unsafe fn GetPreview(
    &self,
    ppIBitmapSource: *mut *mut IWICBitmapSource
) -> HRESULT
[src]

pub unsafe fn GetColorContexts(
    &self,
    cCount: UINT,
    ppIColorContexts: *mut *mut IWICColorContext,
    pcActualCount: *mut UINT
) -> HRESULT
[src]

pub unsafe fn GetThumbnail(
    &self,
    ppIThumbnail: *mut *mut IWICBitmapSource
) -> HRESULT
[src]

pub unsafe fn GetFrameCount(&self, pCount: *mut UINT) -> HRESULT[src]

pub unsafe fn GetFrame(
    &self,
    index: UINT,
    ppIBitmapFrame: *mut *mut IWICBitmapFrameDecode
) -> HRESULT
[src]

Methods from Deref<Target = IUnknown>

pub unsafe fn QueryInterface(
    &self,
    riid: REFIID,
    ppvObject: *mut *mut c_void
) -> HRESULT
[src]

pub unsafe fn AddRef(&self) -> ULONG[src]

pub unsafe fn Release(&self) -> ULONG[src]

Trait Implementations

impl Interface for IWICBitmapDecoder[src]

impl Deref for IWICBitmapDecoder[src]

type Target = IUnknown

The resulting type after dereferencing.

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]