pub trait ITrackShellMenu_Impl: Sized + IShellMenu_Impl {
    // Required methods
    fn SetObscured(
        &self,
        hwndtb: HWND,
        punkband: Option<&IUnknown>,
        dwsmsetflags: u32
    ) -> Result<()>;
    fn Popup(
        &self,
        hwnd: HWND,
        ppt: *mut POINTL,
        prcexclude: *mut RECTL,
        dwflags: i32
    ) -> Result<()>;
}

Required Methods§

fn SetObscured( &self, hwndtb: HWND, punkband: Option<&IUnknown>, dwsmsetflags: u32 ) -> Result<()>

fn Popup( &self, hwnd: HWND, ppt: *mut POINTL, prcexclude: *mut RECTL, dwflags: i32 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§