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

#[repr(C)]
pub struct ISpDataKeyVtbl {
    pub parent: IUnknownVtbl,
    pub SetData: unsafe extern "system" fn(This: *mut ISpDataKey, pszValueName: LPCWSTR, cbData: ULONG, pData: *const BYTE) -> HRESULT,
    pub GetData: unsafe extern "system" fn(This: *mut ISpDataKey, pszValueName: LPCWSTR, pcbData: *mut ULONG, pData: *mut BYTE) -> HRESULT,
    pub SetStringValue: unsafe extern "system" fn(This: *mut ISpDataKey, pszValueName: LPCWSTR, pszValue: LPCWSTR) -> HRESULT,
    pub GetStringValue: unsafe extern "system" fn(This: *mut ISpDataKey, pszValueName: LPCWSTR, ppszValue: *mut LPWSTR) -> HRESULT,
    pub SetDWORD: unsafe extern "system" fn(This: *mut ISpDataKey, pszValueName: LPCWSTR, dwValue: DWORD) -> HRESULT,
    pub GetDWORD: unsafe extern "system" fn(This: *mut ISpDataKey, pszValueName: LPCWSTR, pdwValue: *mut DWORD) -> HRESULT,
    pub OpenKey: unsafe extern "system" fn(This: *mut ISpDataKey, pszSubKeyName: LPCWSTR, ppSubKey: *mut *mut ISpDataKey) -> HRESULT,
    pub CreateKey: unsafe extern "system" fn(This: *mut ISpDataKey, pszSubKey: LPCWSTR, ppSubKey: *mut *mut ISpDataKey) -> HRESULT,
    pub DeleteKey: unsafe extern "system" fn(This: *mut ISpDataKey, pszSubKey: LPCWSTR) -> HRESULT,
    pub DeleteValue: unsafe extern "system" fn(This: *mut ISpDataKey, pszValueName: LPCWSTR) -> HRESULT,
    pub EnumKeys: unsafe extern "system" fn(This: *mut ISpDataKey, Index: ULONG, ppszSubKeyName: *mut LPWSTR) -> HRESULT,
    pub EnumValues: unsafe extern "system" fn(This: *mut ISpDataKey, Index: ULONG, ppszValueName: *mut LPWSTR) -> HRESULT,
}

Fields

parent: IUnknownVtblSetData: unsafe extern "system" fn(This: *mut ISpDataKey, pszValueName: LPCWSTR, cbData: ULONG, pData: *const BYTE) -> HRESULTGetData: unsafe extern "system" fn(This: *mut ISpDataKey, pszValueName: LPCWSTR, pcbData: *mut ULONG, pData: *mut BYTE) -> HRESULTSetStringValue: unsafe extern "system" fn(This: *mut ISpDataKey, pszValueName: LPCWSTR, pszValue: LPCWSTR) -> HRESULTGetStringValue: unsafe extern "system" fn(This: *mut ISpDataKey, pszValueName: LPCWSTR, ppszValue: *mut LPWSTR) -> HRESULTSetDWORD: unsafe extern "system" fn(This: *mut ISpDataKey, pszValueName: LPCWSTR, dwValue: DWORD) -> HRESULTGetDWORD: unsafe extern "system" fn(This: *mut ISpDataKey, pszValueName: LPCWSTR, pdwValue: *mut DWORD) -> HRESULTOpenKey: unsafe extern "system" fn(This: *mut ISpDataKey, pszSubKeyName: LPCWSTR, ppSubKey: *mut *mut ISpDataKey) -> HRESULTCreateKey: unsafe extern "system" fn(This: *mut ISpDataKey, pszSubKey: LPCWSTR, ppSubKey: *mut *mut ISpDataKey) -> HRESULTDeleteKey: unsafe extern "system" fn(This: *mut ISpDataKey, pszSubKey: LPCWSTR) -> HRESULTDeleteValue: unsafe extern "system" fn(This: *mut ISpDataKey, pszValueName: LPCWSTR) -> HRESULTEnumKeys: unsafe extern "system" fn(This: *mut ISpDataKey, Index: ULONG, ppszSubKeyName: *mut LPWSTR) -> HRESULTEnumValues: unsafe extern "system" fn(This: *mut ISpDataKey, Index: ULONG, ppszValueName: *mut LPWSTR) -> HRESULT

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]