pub trait IMFProtectedEnvironmentAccess_Impl: Sized {
// Required methods
fn Call(
&self,
inputlength: u32,
input: *const u8,
outputlength: u32,
output: *mut u8,
) -> Result<()>;
fn ReadGRL(
&self,
outputlength: *mut u32,
output: *mut *mut u8,
) -> Result<()>;
}
Required Methods§
fn Call( &self, inputlength: u32, input: *const u8, outputlength: u32, output: *mut u8, ) -> Result<()>
fn ReadGRL(&self, outputlength: *mut u32, output: *mut *mut u8) -> Result<()>
Object Safety§
This trait is not object safe.