pub trait IWMProximityDetection_Impl: Sized {
    // Required method
    fn StartDetection(
        &self,
        pbregistrationmsg: *const u8,
        cbregistrationmsg: u32,
        pblocaladdress: *const u8,
        cblocaladdress: u32,
        dwextraportsallowed: u32,
        ppregistrationresponsemsg: *mut Option<INSSBuffer>,
        pcallback: Option<&IWMStatusCallback>,
        pvcontext: *const c_void
    ) -> Result<()>;
}

Required Methods§

fn StartDetection( &self, pbregistrationmsg: *const u8, cbregistrationmsg: u32, pblocaladdress: *const u8, cblocaladdress: u32, dwextraportsallowed: u32, ppregistrationresponsemsg: *mut Option<INSSBuffer>, pcallback: Option<&IWMStatusCallback>, pvcontext: *const c_void ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§