[][src]Struct winapi::um::sapi51::ISpRecognizer

#[repr(C)]
pub struct ISpRecognizer {
    pub lpVtbl: *const ISpRecognizerVtbl,
}

Fields

lpVtbl: *const ISpRecognizerVtbl

Methods

impl ISpRecognizer[src]

pub unsafe fn SetRecognizer(&self, pRecognizer: *mut ISpObjectToken) -> HRESULT[src]

pub unsafe fn GetRecognizer(
    &self,
    ppRecognizer: *mut *mut ISpObjectToken
) -> HRESULT
[src]

pub unsafe fn SetInput(
    &self,
    pUnkInput: *mut IUnknown,
    fAllowFormatChanges: BOOL
) -> HRESULT
[src]

pub unsafe fn GetInputObjectToken(
    &self,
    ppToken: *mut *mut ISpObjectToken
) -> HRESULT
[src]

pub unsafe fn GetInputStream(
    &self,
    ppStream: *mut *mut ISpStreamFormat
) -> HRESULT
[src]

pub unsafe fn CreateRecoContext(
    &self,
    ppNewCtxt: *mut *mut ISpRecoContext
) -> HRESULT
[src]

pub unsafe fn GetRecoProfile(
    &self,
    ppToken: *mut *mut ISpObjectToken
) -> HRESULT
[src]

pub unsafe fn SetRecoProfile(&self, pToken: *mut ISpObjectToken) -> HRESULT[src]

pub unsafe fn IsSharedInstance(&self) -> HRESULT[src]

pub unsafe fn GetRecoState(&self, pState: *mut SPRECOSTATE) -> HRESULT[src]

pub unsafe fn SetRecoState(&self, NewState: SPRECOSTATE) -> HRESULT[src]

pub unsafe fn GetStatus(&self, pStatus: *mut SPRECOGNIZERSTATUS) -> HRESULT[src]

pub unsafe fn GetFormat(
    &self,
    WaveFormatType: SPSTREAMFORMATTYPE,
    pFormatId: *mut GUID,
    ppCoMemWFEX: *mut WAVEFORMATEX
) -> HRESULT
[src]

pub unsafe fn IsUISupported(
    &self,
    pszTypeOfUI: LPCWSTR,
    pvExtraData: *mut c_void,
    cbExtraData: ULONG,
    pfSupported: *mut BOOL
) -> HRESULT
[src]

pub unsafe fn DisplayUI(
    &self,
    hwndParent: HWND,
    pszTitle: LPCWSTR,
    pszTypeOfUI: LPCWSTR,
    pvExtraData: *mut c_void,
    cbExtraData: ULONG
) -> HRESULT
[src]

pub unsafe fn EmulateRecognition(&self, pPhrase: *mut ISpPhrase) -> HRESULT[src]

Methods from Deref<Target = ISpProperties>

pub unsafe fn SetPropertyNum(&self, pName: LPCWSTR, lValue: LONG) -> HRESULT[src]

pub unsafe fn GetPropertyNum(
    &self,
    pName: LPCWSTR,
    plValue: *mut LONG
) -> HRESULT
[src]

pub unsafe fn SetPropertyString(
    &self,
    pName: LPCWSTR,
    pValue: LPCWSTR
) -> HRESULT
[src]

pub unsafe fn GetPropertyString(
    &self,
    pName: LPCWSTR,
    ppCoMemValue: *mut LPWSTR
) -> HRESULT
[src]

Trait Implementations

impl Interface for ISpRecognizer[src]

impl Deref for ISpRecognizer[src]

type Target = ISpProperties

The resulting type after dereferencing.

Auto Trait Implementations

Blanket Implementations

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]