pub trait ICommDlgBrowser_Impl: Sized {
    // Required methods
    fn OnDefaultCommand(&self, ppshv: Option<&IShellView>) -> Result<()>;
    fn OnStateChange(
        &self,
        ppshv: Option<&IShellView>,
        uchange: u32
    ) -> Result<()>;
    fn IncludeObject(
        &self,
        ppshv: Option<&IShellView>,
        pidl: *const ITEMIDLIST
    ) -> Result<()>;
}

Required Methods§

fn OnDefaultCommand(&self, ppshv: Option<&IShellView>) -> Result<()>

fn OnStateChange(&self, ppshv: Option<&IShellView>, uchange: u32) -> Result<()>

fn IncludeObject( &self, ppshv: Option<&IShellView>, pidl: *const ITEMIDLIST ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§