pub trait ICommDlgBrowser2_Impl: Sized + ICommDlgBrowser_Impl {
    // Required methods
    fn Notify(
        &self,
        ppshv: Option<&IShellView>,
        dwnotifytype: u32
    ) -> Result<()>;
    fn GetDefaultMenuText(
        &self,
        ppshv: Option<&IShellView>,
        psztext: PWSTR,
        cchmax: i32
    ) -> Result<()>;
    fn GetViewFlags(&self) -> Result<u32>;
}

Required Methods§

fn Notify(&self, ppshv: Option<&IShellView>, dwnotifytype: u32) -> Result<()>

fn GetDefaultMenuText( &self, ppshv: Option<&IShellView>, psztext: PWSTR, cchmax: i32 ) -> Result<()>

fn GetViewFlags(&self) -> Result<u32>

Object Safety§

This trait is not object safe.

Implementors§