pub trait IThumbnailExtractor_Impl: Sized {
// Required methods
fn ExtractThumbnail(
&self,
pstg: Option<&IStorage>,
ullength: u32,
ulheight: u32,
puloutputlength: *mut u32,
puloutputheight: *mut u32,
phoutputbitmap: *mut HBITMAP,
) -> Result<()>;
fn OnFileUpdated(&self, pstg: Option<&IStorage>) -> Result<()>;
}
Required Methods§
fn ExtractThumbnail( &self, pstg: Option<&IStorage>, ullength: u32, ulheight: u32, puloutputlength: *mut u32, puloutputheight: *mut u32, phoutputbitmap: *mut HBITMAP, ) -> Result<()>
fn OnFileUpdated(&self, pstg: Option<&IStorage>) -> Result<()>
Object Safety§
This trait is not object safe.