pub trait IMediaEventEx_Impl: Sized + IMediaEvent_Impl {
    // Required methods
    fn SetNotifyWindow(
        &self,
        hwnd: isize,
        lmsg: i32,
        linstancedata: isize
    ) -> Result<()>;
    fn SetNotifyFlags(&self, lnonotifyflags: i32) -> Result<()>;
    fn GetNotifyFlags(&self) -> Result<i32>;
}

Required Methods§

fn SetNotifyWindow( &self, hwnd: isize, lmsg: i32, linstancedata: isize ) -> Result<()>

fn SetNotifyFlags(&self, lnonotifyflags: i32) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§