Struct IMFContentDecryptionModuleSession_Vtbl
#[repr(C)]pub struct IMFContentDecryptionModuleSession_Vtbl {
pub base__: IUnknown_Vtbl,
pub GetSessionId: unsafe extern "system" fn(_: *mut c_void, _: *mut PWSTR) -> HRESULT,
pub GetExpiration: unsafe extern "system" fn(_: *mut c_void, _: *mut f64) -> HRESULT,
pub GetKeyStatuses: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut MFMediaKeyStatus, _: *mut u32) -> HRESULT,
pub Load: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR, _: *mut BOOL) -> HRESULT,
pub GenerateRequest: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR, _: *const u8, _: u32) -> HRESULT,
pub Update: unsafe extern "system" fn(_: *mut c_void, _: *const u8, _: u32) -> HRESULT,
pub Close: unsafe extern "system" fn(_: *mut c_void) -> HRESULT,
pub Remove: unsafe extern "system" fn(_: *mut c_void) -> HRESULT,
}
Fields§
§base__: IUnknown_Vtbl
§GetSessionId: unsafe extern "system" fn(_: *mut c_void, _: *mut PWSTR) -> HRESULT
§GetExpiration: unsafe extern "system" fn(_: *mut c_void, _: *mut f64) -> HRESULT
§GetKeyStatuses: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut MFMediaKeyStatus, _: *mut u32) -> HRESULT
§Load: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR, _: *mut BOOL) -> HRESULT
§GenerateRequest: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR, _: *const u8, _: u32) -> HRESULT
§Update: unsafe extern "system" fn(_: *mut c_void, _: *const u8, _: u32) -> HRESULT
§Close: unsafe extern "system" fn(_: *mut c_void) -> HRESULT
§Remove: unsafe extern "system" fn(_: *mut c_void) -> HRESULT
Implementations§
§impl IMFContentDecryptionModuleSession_Vtbl
impl IMFContentDecryptionModuleSession_Vtbl
pub const fn new<Identity: IMFContentDecryptionModuleSession_Impl, const OFFSET: isize>() -> Self
pub fn matches(iid: &GUID) -> bool
Auto Trait Implementations§
impl Freeze for IMFContentDecryptionModuleSession_Vtbl
impl RefUnwindSafe for IMFContentDecryptionModuleSession_Vtbl
impl Send for IMFContentDecryptionModuleSession_Vtbl
impl Sync for IMFContentDecryptionModuleSession_Vtbl
impl Unpin for IMFContentDecryptionModuleSession_Vtbl
impl UnwindSafe for IMFContentDecryptionModuleSession_Vtbl
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more