pub trait IExtendControlbar_Impl: Sized {
    // Required methods
    fn SetControlbar(&self, pcontrolbar: Option<&IControlbar>) -> Result<()>;
    fn ControlbarNotify(
        &self,
        event: MMC_NOTIFY_TYPE,
        arg: LPARAM,
        param2: LPARAM
    ) -> Result<()>;
}

Required Methods§

fn SetControlbar(&self, pcontrolbar: Option<&IControlbar>) -> Result<()>

fn ControlbarNotify( &self, event: MMC_NOTIFY_TYPE, arg: LPARAM, param2: LPARAM ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§