pub trait IExtractImage_Impl: Sized {
    // Required methods
    fn GetLocation(
        &self,
        pszpathbuffer: PWSTR,
        cch: u32,
        pdwpriority: *mut u32,
        prgsize: *const SIZE,
        dwrecclrdepth: u32,
        pdwflags: *mut u32
    ) -> Result<()>;
    fn Extract(&self) -> Result<HBITMAP>;
}

Required Methods§

fn GetLocation( &self, pszpathbuffer: PWSTR, cch: u32, pdwpriority: *mut u32, prgsize: *const SIZE, dwrecclrdepth: u32, pdwflags: *mut u32 ) -> Result<()>

fn Extract(&self) -> Result<HBITMAP>

Object Safety§

This trait is not object safe.

Implementors§