pub trait IMFRealTimeClientEx_Impl: Sized {
    // Required methods
    fn RegisterThreadsEx(
        &self,
        pdwtaskindex: *mut u32,
        wszclassname: &PCWSTR,
        lbasepriority: i32
    ) -> Result<()>;
    fn UnregisterThreads(&self) -> Result<()>;
    fn SetWorkQueueEx(
        &self,
        dwmultithreadedworkqueueid: u32,
        lworkitembasepriority: i32
    ) -> Result<()>;
}

Required Methods§

fn RegisterThreadsEx( &self, pdwtaskindex: *mut u32, wszclassname: &PCWSTR, lbasepriority: i32 ) -> Result<()>

fn UnregisterThreads(&self) -> Result<()>

fn SetWorkQueueEx( &self, dwmultithreadedworkqueueid: u32, lworkitembasepriority: i32 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§