pub trait IShellIconOverlay_Impl: Sized {
    // Required methods
    fn GetOverlayIndex(
        &self,
        pidl: *const ITEMIDLIST,
        pindex: *mut i32
    ) -> Result<()>;
    fn GetOverlayIconIndex(
        &self,
        pidl: *const ITEMIDLIST,
        piconindex: *mut i32
    ) -> Result<()>;
}

Required Methods§

fn GetOverlayIndex( &self, pidl: *const ITEMIDLIST, pindex: *mut i32 ) -> Result<()>

fn GetOverlayIconIndex( &self, pidl: *const ITEMIDLIST, piconindex: *mut i32 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§