include: Add CertRegisterSystemStore and CertUnregisterSystemStore.
Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
db5a57c5f2
commit
f0da42f7f6
|
@ -1414,7 +1414,7 @@ BOOL WINAPI CertRegisterSystemStore(const void *pvSystemStore, DWORD dwFlags,
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOL WINAPI CertUnregisterSystemStore(void *pvSystemStore, DWORD dwFlags)
|
BOOL WINAPI CertUnregisterSystemStore(const void *pvSystemStore, DWORD dwFlags)
|
||||||
{
|
{
|
||||||
HCERTSTORE hstore;
|
HCERTSTORE hstore;
|
||||||
|
|
||||||
|
|
|
@ -4087,6 +4087,11 @@ BOOL WINAPI CertEnumSystemStoreLocation(DWORD dwFlags, void *pvArg,
|
||||||
BOOL WINAPI CertEnumSystemStore(DWORD dwFlags, void *pvSystemStoreLocationPara,
|
BOOL WINAPI CertEnumSystemStore(DWORD dwFlags, void *pvSystemStoreLocationPara,
|
||||||
void *pvArg, PFN_CERT_ENUM_SYSTEM_STORE pfnEnum);
|
void *pvArg, PFN_CERT_ENUM_SYSTEM_STORE pfnEnum);
|
||||||
|
|
||||||
|
BOOL WINAPI CertRegisterSystemStore(const void *store, DWORD flags,
|
||||||
|
CERT_SYSTEM_STORE_INFO *info, void *reserved);
|
||||||
|
|
||||||
|
BOOL WINAPI CertUnregisterSystemStore(const void *store, DWORD flags);
|
||||||
|
|
||||||
BOOL WINAPI CertEnumPhysicalStore(const void *pvSystemStore, DWORD dwFlags,
|
BOOL WINAPI CertEnumPhysicalStore(const void *pvSystemStore, DWORD dwFlags,
|
||||||
void *pvArg, PFN_CERT_ENUM_PHYSICAL_STORE pfnEnum);
|
void *pvArg, PFN_CERT_ENUM_PHYSICAL_STORE pfnEnum);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue