pub trait ITridentTouchInput_Impl: Sized {
    // Required method
    fn OnPointerMessage(
        &self,
        msg: u32,
        wparam: WPARAM,
        lparam: LPARAM
    ) -> Result<BOOL>;
}

Required Methods§

fn OnPointerMessage( &self, msg: u32, wparam: WPARAM, lparam: LPARAM ) -> Result<BOOL>

Object Safety§

This trait is not object safe.

Implementors§