pub trait IShellChangeNotify_Impl: Sized {
    // Required method
    fn OnChange(
        &self,
        levent: i32,
        pidl1: *const ITEMIDLIST,
        pidl2: *const ITEMIDLIST
    ) -> Result<()>;
}

Required Methods§

fn OnChange( &self, levent: i32, pidl1: *const ITEMIDLIST, pidl2: *const ITEMIDLIST ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§