Share via


CERT_SYSTEM_STORE_RELOCATE_PARA (Windows CE 5.0)

Send Feedback

This structure contains data to be passed to the CertOpenStore function when that function's dwFlags parameter is set to CERT_SYSTEM_STORE_RELOCATE_FLAG. It allows the application to specify not only the name of the store to be opened, but also registry hKey information indicating a registry location other than the default location.

typedef struct _CERT_SYSTEM_STORE_RELOCATE_PARA {union {    HKEYhKeyBase;void* pvBase; };union {    void* pvSystemStore;LPCSTRpszSystemStore;LPCWSTRpwszSystemStore;  };} CERT_SYSTEM_STORE_RELOCATE_PARA, *PCERT_SYSTEM_STORE_RELOCATE_PARA;

Members

  • hKeyBase
    Handle to the registry hKey.
  • pvBase
    Pointer to a void to allow the system store location's base to be passed in a number of different forms.
  • pvSystemStore
    Pointer to a void to allow the name of the system store to be passed in various forms.
  • pszSystemStore
    A null-terminated ASCII string that names the system store.
  • pwszSystemStore
    A null-terminated Unicode string that names the system store.

Remarks

The relocate capability is used to access system stores persisted in the group policy template (GPT). For example, the Group Policy Editor's MMC snap-in extension for managing group policy trust lists and certificates uses the GPT's base HKEY to call the CertOpenStore function.

Requirements

OS Versions: Windows CE 3.0 and later.
Header: Wincrypt.h.

See Also

CertOpenStore

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.