pub trait ISpeechCommandProvider_Impl: Sized {
    // Required methods
    fn EnumSpeechCommands(&self, langid: u16) -> Result<IEnumSpeechCommands>;
    fn ProcessCommand(
        &self,
        pszcommand: &PCWSTR,
        cch: u32,
        langid: u16,
    ) -> Result<()>;
}

Required Methods§

fn EnumSpeechCommands(&self, langid: u16) -> Result<IEnumSpeechCommands>

fn ProcessCommand( &self, pszcommand: &PCWSTR, cch: u32, langid: u16, ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§