pub trait IHWEventHandler2_Impl: Sized + IHWEventHandler_Impl {
    // Required method
    fn HandleEventWithHWND(
        &self,
        pszdeviceid: &PCWSTR,
        pszaltdeviceid: &PCWSTR,
        pszeventtype: &PCWSTR,
        hwndowner: HWND
    ) -> Result<()>;
}

Required Methods§

fn HandleEventWithHWND( &self, pszdeviceid: &PCWSTR, pszaltdeviceid: &PCWSTR, pszeventtype: &PCWSTR, hwndowner: HWND ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§