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

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

Fields

lpVtbl: *const ISpDataKeyVtbl

Methods

impl ISpDataKey[src]

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]

Methods from Deref<Target = IUnknown>

pub unsafe fn QueryInterface(
    &self,
    riid: REFIID,
    ppvObject: *mut *mut c_void
) -> HRESULT
[src]

pub unsafe fn AddRef(&self) -> ULONG[src]

pub unsafe fn Release(&self) -> ULONG[src]

Trait Implementations

impl Interface for ISpDataKey[src]

impl Deref for ISpDataKey[src]

type Target = IUnknown

The resulting type after dereferencing.

Auto Trait Implementations

impl Unpin for ISpDataKey

impl !Send for ISpDataKey

impl !Sync for ISpDataKey

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]