Trait IShellIconOverlayManager_Impl
pub trait IShellIconOverlayManager_Impl: IUnknownImpl {
// Required methods
fn GetFileOverlayInfo(
&self,
pwszpath: &PCWSTR,
dwattrib: u32,
pindex: *mut i32,
dwflags: u32,
) -> Result<()>;
fn GetReservedOverlayInfo(
&self,
pwszpath: &PCWSTR,
dwattrib: u32,
pindex: *mut i32,
dwflags: u32,
ireservedid: i32,
) -> Result<()>;
fn RefreshOverlayImages(&self, dwflags: u32) -> Result<()>;
fn LoadNonloadedOverlayIdentifiers(&self) -> Result<()>;
fn OverlayIndexFromImageIndex(
&self,
iimage: i32,
piindex: *mut i32,
fadd: BOOL,
) -> Result<()>;
}
Required Methods§
fn GetFileOverlayInfo( &self, pwszpath: &PCWSTR, dwattrib: u32, pindex: *mut i32, dwflags: u32, ) -> Result<()>
fn GetReservedOverlayInfo( &self, pwszpath: &PCWSTR, dwattrib: u32, pindex: *mut i32, dwflags: u32, ireservedid: i32, ) -> Result<()>
fn RefreshOverlayImages(&self, dwflags: u32) -> Result<()>
fn LoadNonloadedOverlayIdentifiers(&self) -> Result<()>
fn OverlayIndexFromImageIndex( &self, iimage: i32, piindex: *mut i32, fadd: BOOL, ) -> Result<()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.