pub trait IFullScreenVideoEx_Impl: Sized + IFullScreenVideo_Impl {
    // Required methods
    fn SetAcceleratorTable(&self, hwnd: HWND, haccel: HACCEL) -> Result<()>;
    fn GetAcceleratorTable(
        &self,
        phwnd: *mut HWND,
        phaccel: *mut HACCEL
    ) -> Result<()>;
    fn KeepPixelAspectRatio(&self, keepaspect: i32) -> Result<()>;
    fn IsKeepPixelAspectRatio(&self) -> Result<i32>;
}

Required Methods§

fn SetAcceleratorTable(&self, hwnd: HWND, haccel: HACCEL) -> Result<()>

fn GetAcceleratorTable( &self, phwnd: *mut HWND, phaccel: *mut HACCEL ) -> Result<()>

fn KeepPixelAspectRatio(&self, keepaspect: i32) -> Result<()>

fn IsKeepPixelAspectRatio(&self) -> Result<i32>

Object Safety§

This trait is not object safe.

Implementors§