Trait windows::Win32::Media::Speech::ISpEventSource_Impl

pub trait ISpEventSource_Impl: Sized + ISpNotifySource_Impl {
    // Required methods
    fn SetInterest(
        &self,
        ulleventinterest: u64,
        ullqueuedinterest: u64,
    ) -> Result<()>;
    fn GetEvents(
        &self,
        ulcount: u32,
        peventarray: *mut SPEVENT,
        pulfetched: *mut u32,
    ) -> Result<()>;
    fn GetInfo(&self, pinfo: *mut SPEVENTSOURCEINFO) -> Result<()>;
}

Required Methods§

fn SetInterest( &self, ulleventinterest: u64, ullqueuedinterest: u64, ) -> Result<()>

fn GetEvents( &self, ulcount: u32, peventarray: *mut SPEVENT, pulfetched: *mut u32, ) -> Result<()>

fn GetInfo(&self, pinfo: *mut SPEVENTSOURCEINFO) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§