pub trait IShellIconOverlayIdentifier_Impl: Sized {
    // Required methods
    fn IsMemberOf(&self, pwszpath: &PCWSTR, dwattrib: u32) -> Result<()>;
    fn GetOverlayInfo(
        &self,
        pwsziconfile: PWSTR,
        cchmax: i32,
        pindex: *mut i32,
        pdwflags: *mut u32
    ) -> Result<()>;
    fn GetPriority(&self) -> Result<i32>;
}

Required Methods§

fn IsMemberOf(&self, pwszpath: &PCWSTR, dwattrib: u32) -> Result<()>

fn GetOverlayInfo( &self, pwsziconfile: PWSTR, cchmax: i32, pindex: *mut i32, pdwflags: *mut u32 ) -> Result<()>

fn GetPriority(&self) -> Result<i32>

Object Safety§

This trait is not object safe.

Implementors§