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

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

Fields

lpVtbl: *const ISpRegDataKeyVtbl

Methods

impl ISpRegDataKey[src]

pub unsafe fn SetKey(&self, hkey: HKEY, fReadOnly: BOOL) -> HRESULT[src]

Methods from Deref<Target = ISpDataKey>

pub unsafe fn SetData(
    &self,
    pszValueName: LPCWSTR,
    cbData: ULONG,
    pData: *const BYTE
) -> HRESULT
[src]

pub unsafe fn GetData(
    &self,
    pszValueName: LPCWSTR,
    pcbData: *mut ULONG,
    pData: *mut BYTE
) -> HRESULT
[src]

pub unsafe fn SetStringValue(
    &self,
    pszValueName: LPCWSTR,
    pszValue: LPCWSTR
) -> HRESULT
[src]

pub unsafe fn GetStringValue(
    &self,
    pszValueName: LPCWSTR,
    ppszValue: *mut LPWSTR
) -> HRESULT
[src]

pub unsafe fn SetDWORD(&self, pszValueName: LPCWSTR, dwValue: DWORD) -> HRESULT[src]

pub unsafe fn GetDWORD(
    &self,
    pszValueName: LPCWSTR,
    pdwValue: *mut DWORD
) -> HRESULT
[src]

pub unsafe fn OpenKey(
    &self,
    pszSubKeyName: LPCWSTR,
    ppSubKey: *mut *mut ISpDataKey
) -> HRESULT
[src]

pub unsafe fn CreateKey(
    &self,
    pszSubKey: LPCWSTR,
    ppSubKey: *mut *mut ISpDataKey
) -> HRESULT
[src]

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

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

pub unsafe fn EnumKeys(
    &self,
    Index: ULONG,
    ppszSubKeyName: *mut LPWSTR
) -> HRESULT
[src]

pub unsafe fn EnumValues(
    &self,
    Index: ULONG,
    ppszValueName: *mut LPWSTR
) -> HRESULT
[src]

Trait Implementations

impl Interface for ISpRegDataKey[src]

impl Deref for ISpRegDataKey[src]

type Target = ISpDataKey

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]