Trait IWMLicenseRevocationAgent_Impl
pub trait IWMLicenseRevocationAgent_Impl: IUnknownImpl {
// Required methods
fn GetLRBChallenge(
&self,
pmachineid: *const u8,
dwmachineidlength: u32,
pchallenge: *const u8,
dwchallengelength: u32,
pchallengeoutput: *mut u8,
pdwchallengeoutputlength: *mut u32,
) -> Result<()>;
fn ProcessLRB(
&self,
psignedlrb: *const u8,
dwsignedlrblength: u32,
psignedack: *mut u8,
pdwsignedacklength: *mut u32,
) -> Result<()>;
}
Required Methods§
fn GetLRBChallenge( &self, pmachineid: *const u8, dwmachineidlength: u32, pchallenge: *const u8, dwchallengelength: u32, pchallengeoutput: *mut u8, pdwchallengeoutputlength: *mut u32, ) -> Result<()>
fn ProcessLRB( &self, psignedlrb: *const u8, dwsignedlrblength: u32, psignedack: *mut u8, pdwsignedacklength: *mut u32, ) -> Result<()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.