CERT_SYSTEM_STORE_RELOCATE_PARA
A version of this page is also available for
4/8/2010
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.
Syntax
typedef struct _CERT_SYSTEM_STORE_RELOCATE_PARA {
union {
HKEY hKeyBase;
void* pvBase;
};
union {
void* pvSystemStore;
LPCSTR pszSystemStore;
LPCWSTR pwszSystemStore;
};
} 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
Header | wincrypt.h |
Windows Embedded CE | Windows CE 3.0 and later |
Windows Mobile | Windows Mobile Version 5.0 and later |