pub trait IVMRImagePresenter_Impl: Sized {
    // Required methods
    fn StartPresenting(&self, dwuserid: usize) -> Result<()>;
    fn StopPresenting(&self, dwuserid: usize) -> Result<()>;
    fn PresentImage(
        &self,
        dwuserid: usize,
        lppresinfo: *const VMRPRESENTATIONINFO
    ) -> Result<()>;
}

Required Methods§

fn StartPresenting(&self, dwuserid: usize) -> Result<()>

fn StopPresenting(&self, dwuserid: usize) -> Result<()>

fn PresentImage( &self, dwuserid: usize, lppresinfo: *const VMRPRESENTATIONINFO ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§