pub trait ITRequest_Impl: Sized + IDispatch_Impl {
    // Required method
    fn MakeCall(
        &self,
        pdestaddress: &BSTR,
        pappname: &BSTR,
        pcalledparty: &BSTR,
        pcomment: &BSTR
    ) -> Result<()>;
}

Required Methods§

fn MakeCall( &self, pdestaddress: &BSTR, pappname: &BSTR, pcalledparty: &BSTR, pcomment: &BSTR ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§