pub trait ITranscodeImage_Impl: Sized {
    // Required method
    fn TranscodeImage(
        &self,
        pshellitem: Option<&IShellItem>,
        uimaxwidth: u32,
        uimaxheight: u32,
        flags: u32,
        pvimage: Option<&IStream>,
        puiwidth: *mut u32,
        puiheight: *mut u32
    ) -> Result<()>;
}

Required Methods§

fn TranscodeImage( &self, pshellitem: Option<&IShellItem>, uimaxwidth: u32, uimaxheight: u32, flags: u32, pvimage: Option<&IStream>, puiwidth: *mut u32, puiheight: *mut u32 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§