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

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

Fields

lpVtbl: *const ISpeechDataKeyVtbl

Methods

impl ISpeechDataKey[src]

pub unsafe fn SetBinaryValue(&self, ValueName: BSTR, Value: VARIANT) -> HRESULT[src]

pub unsafe fn GetBinaryValue(
    &self,
    ValueName: BSTR,
    Value: *mut VARIANT
) -> HRESULT
[src]

pub unsafe fn SetStringValue(&self, ValueName: BSTR, Value: BSTR) -> HRESULT[src]

pub unsafe fn GetStringValue(
    &self,
    ValueName: BSTR,
    Value: *mut BSTR
) -> HRESULT
[src]

pub unsafe fn SetLongValue(&self, ValueName: BSTR, Value: c_long) -> HRESULT[src]

pub unsafe fn GetLongValue(
    &self,
    ValueName: BSTR,
    Value: *mut c_long
) -> HRESULT
[src]

pub unsafe fn OpenKey(
    &self,
    SubKeyName: BSTR,
    SubKey: *mut *mut ISpeechDataKey
) -> HRESULT
[src]

pub unsafe fn CreateKey(
    &self,
    SubKeyName: BSTR,
    SubKey: *mut *mut ISpeechDataKey
) -> HRESULT
[src]

pub unsafe fn DeleteKey(&self, SubKeyName: BSTR) -> HRESULT[src]

pub unsafe fn DeleteValue(&self, ValueName: BSTR) -> HRESULT[src]

pub unsafe fn EnumKeys(&self, Index: c_long, SubKeyName: *mut BSTR) -> HRESULT[src]

pub unsafe fn EnumValues(&self, Index: c_long, ValueName: *mut BSTR) -> HRESULT[src]

Methods from Deref<Target = IDispatch>

pub unsafe fn GetTypeInfoCount(&self, pctinfo: *mut UINT) -> HRESULT[src]

pub unsafe fn GetTypeInfo(
    &self,
    iTInfo: UINT,
    lcid: LCID,
    ppTInfo: *mut *mut ITypeInfo
) -> HRESULT
[src]

pub unsafe fn GetIDsOfNames(
    &self,
    riid: REFIID,
    rgszNames: *mut LPOLESTR,
    cNames: UINT,
    lcid: LCID,
    rgDispId: *mut DISPID
) -> HRESULT
[src]

pub unsafe fn Invoke(
    &self,
    dispIdMember: DISPID,
    riid: REFIID,
    lcid: LCID,
    wFlags: WORD,
    pDispParams: *mut DISPPARAMS,
    pVarResult: *mut VARIANT,
    pExcepInfo: *mut EXCEPINFO,
    puArgErr: *mut UINT
) -> HRESULT
[src]

Trait Implementations

impl Interface for ISpeechDataKey[src]

impl Deref for ISpeechDataKey[src]

type Target = IDispatch

The resulting type after dereferencing.

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto 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, U> Into for T where
    U: From<T>, 
[src]

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

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

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