pub trait IWTSListenerCallback_Impl: Sized {
    // Required method
    fn OnNewChannelConnection(
        &self,
        pchannel: Option<&IWTSVirtualChannel>,
        data: &BSTR,
        pbaccept: *mut BOOL,
        ppcallback: *mut Option<IWTSVirtualChannelCallback>,
    ) -> Result<()>;
}

Required Methods§

fn OnNewChannelConnection( &self, pchannel: Option<&IWTSVirtualChannel>, data: &BSTR, pbaccept: *mut BOOL, ppcallback: *mut Option<IWTSVirtualChannelCallback>, ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§