pub trait IAMVfwCaptureDialogs_Impl: Sized {
    // Required methods
    fn HasDialog(&self, idialog: i32) -> Result<()>;
    fn ShowDialog(&self, idialog: i32, hwnd: HWND) -> Result<()>;
    fn SendDriverMessage(
        &self,
        idialog: i32,
        umsg: i32,
        dw1: i32,
        dw2: i32
    ) -> Result<()>;
}

Required Methods§

fn HasDialog(&self, idialog: i32) -> Result<()>

fn ShowDialog(&self, idialog: i32, hwnd: HWND) -> Result<()>

fn SendDriverMessage( &self, idialog: i32, umsg: i32, dw1: i32, dw2: i32 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§