Trait windows::Win32::Graphics::Direct3D11::ID3D11CryptoSession_Impl
pub trait ID3D11CryptoSession_Impl: Sized + ID3D11DeviceChild_Impl {
// Required methods
fn GetCryptoType(&self, pcryptotype: *mut GUID);
fn GetDecoderProfile(&self, pdecoderprofile: *mut GUID);
fn GetCertificateSize(&self) -> Result<u32>;
fn GetCertificate(
&self,
certificatesize: u32,
pcertificate: *mut u8,
) -> Result<()>;
fn GetCryptoSessionHandle(&self, pcryptosessionhandle: *mut HANDLE);
}
Required Methods§
fn GetCryptoType(&self, pcryptotype: *mut GUID)
fn GetDecoderProfile(&self, pdecoderprofile: *mut GUID)
fn GetCertificateSize(&self) -> Result<u32>
fn GetCertificate( &self, certificatesize: u32, pcertificate: *mut u8, ) -> Result<()>
fn GetCryptoSessionHandle(&self, pcryptosessionhandle: *mut HANDLE)
Object Safety§
This trait is not object safe.