pub trait IMenuPopup_Impl: Sized + IDeskBar_Impl {
    // Required methods
    fn Popup(
        &self,
        ppt: *const POINTL,
        prcexclude: *const RECTL,
        dwflags: i32
    ) -> Result<()>;
    fn OnSelect(&self, dwselecttype: u32) -> Result<()>;
    fn SetSubMenu(&self, pmp: Option<&IMenuPopup>, fset: BOOL) -> Result<()>;
}

Required Methods§

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

fn OnSelect(&self, dwselecttype: u32) -> Result<()>

fn SetSubMenu(&self, pmp: Option<&IMenuPopup>, fset: BOOL) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§