pub trait IDirect3DDevice9Video_Impl: Sized {
    // Required methods
    fn GetContentProtectionCaps(
        &self,
        pcryptotype: *const GUID,
        pdecodeprofile: *const GUID,
        pcaps: *mut D3DCONTENTPROTECTIONCAPS
    ) -> Result<()>;
    fn CreateAuthenticatedChannel(
        &self,
        channeltype: D3DAUTHENTICATEDCHANNELTYPE,
        ppauthenticatedchannel: *mut Option<IDirect3DAuthenticatedChannel9>,
        pchannelhandle: *mut HANDLE
    ) -> Result<()>;
    fn CreateCryptoSession(
        &self,
        pcryptotype: *const GUID,
        pdecodeprofile: *const GUID,
        ppcryptosession: *mut Option<IDirect3DCryptoSession9>,
        pcryptohandle: *mut HANDLE
    ) -> Result<()>;
}

Required Methods§

fn GetContentProtectionCaps( &self, pcryptotype: *const GUID, pdecodeprofile: *const GUID, pcaps: *mut D3DCONTENTPROTECTIONCAPS ) -> Result<()>

fn CreateAuthenticatedChannel( &self, channeltype: D3DAUTHENTICATEDCHANNELTYPE, ppauthenticatedchannel: *mut Option<IDirect3DAuthenticatedChannel9>, pchannelhandle: *mut HANDLE ) -> Result<()>

fn CreateCryptoSession( &self, pcryptotype: *const GUID, pdecodeprofile: *const GUID, ppcryptosession: *mut Option<IDirect3DCryptoSession9>, pcryptohandle: *mut HANDLE ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§