pub trait IExtendContextMenu_Impl: Sized {
    // Required methods
    fn AddMenuItems(
        &self,
        pidataobject: Option<&IDataObject>,
        picallback: Option<&IContextMenuCallback>,
        pinsertionallowed: *mut i32
    ) -> Result<()>;
    fn Command(
        &self,
        lcommandid: i32,
        pidataobject: Option<&IDataObject>
    ) -> Result<()>;
}

Required Methods§

fn AddMenuItems( &self, pidataobject: Option<&IDataObject>, picallback: Option<&IContextMenuCallback>, pinsertionallowed: *mut i32 ) -> Result<()>

fn Command( &self, lcommandid: i32, pidataobject: Option<&IDataObject> ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§