pub trait IControlChangeNotify_Impl: Sized {
    // Required method
    fn OnNotify(
        &self,
        dwsenderprocessid: u32,
        pguideventcontext: *const GUID
    ) -> Result<()>;
}

Required Methods§

fn OnNotify( &self, dwsenderprocessid: u32, pguideventcontext: *const GUID ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§