pub trait IMFWorkQueueServicesEx_Impl: Sized + IMFWorkQueueServices_Impl {
    // Required methods
    fn GetTopologyWorkQueueMMCSSPriority(
        &self,
        dwtopologyworkqueueid: u32
    ) -> Result<i32>;
    fn BeginRegisterPlatformWorkQueueWithMMCSSEx(
        &self,
        dwplatformworkqueue: u32,
        wszclass: &PCWSTR,
        dwtaskid: u32,
        lpriority: i32,
        pcallback: Option<&IMFAsyncCallback>,
        pstate: Option<&IUnknown>
    ) -> Result<()>;
    fn GetPlatformWorkQueueMMCSSPriority(
        &self,
        dwplatformworkqueueid: u32
    ) -> Result<i32>;
}

Required Methods§

fn GetTopologyWorkQueueMMCSSPriority( &self, dwtopologyworkqueueid: u32 ) -> Result<i32>

fn BeginRegisterPlatformWorkQueueWithMMCSSEx( &self, dwplatformworkqueue: u32, wszclass: &PCWSTR, dwtaskid: u32, lpriority: i32, pcallback: Option<&IMFAsyncCallback>, pstate: Option<&IUnknown> ) -> Result<()>

fn GetPlatformWorkQueueMMCSSPriority( &self, dwplatformworkqueueid: u32 ) -> Result<i32>

Object Safety§

This trait is not object safe.

Implementors§