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

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

Fields

lpVtbl: *const ISpObjectTokenVtbl

Methods

impl ISpObjectToken[src]

pub unsafe fn SetId(
    &self,
    pszCategoryId: LPCWSTR,
    pszTokenId: LPCWSTR,
    fCreateIfNotExist: BOOL
) -> HRESULT
[src]

pub unsafe fn GetId(&self, ppszCoMemTokenId: *mut LPWSTR) -> HRESULT[src]

pub unsafe fn GetCategory(
    &self,
    ppTokenCategory: *mut *mut ISpObjectTokenCategory
) -> HRESULT
[src]

pub unsafe fn CreateInstance(
    &self,
    pUnkOuter: *mut IUnknown,
    dwClsContext: DWORD,
    riid: REFIID,
    ppvObject: *mut *mut c_void
) -> HRESULT
[src]

pub unsafe fn GetStorageFileName(
    &self,
    clsidCaller: REFCLSID,
    pszValueName: LPCWSTR,
    pszFileNameSpecifier: LPCWSTR,
    nFolder: ULONG,
    ppszFilePath: *mut LPWSTR
) -> HRESULT
[src]

pub unsafe fn RemoveStorageFileName(
    &self,
    pszKeyName: LPCWSTR,
    fDeleteFile: BOOL
) -> HRESULT
[src]

pub unsafe fn Remove(&self, pclsidCaller: *const CLSID) -> HRESULT[src]

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

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

pub unsafe fn MatchesAttributes(
    &self,
    pszAttributes: LPCWSTR,
    pfMatches: *mut 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 ISpObjectToken[src]

impl Deref for ISpObjectToken[src]

type Target = ISpDataKey

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]