crypt32: Implement PFXExportCertStore on top of PFXExportCertStoreEx.
This commit is contained in:
parent
6e32746f6e
commit
7127985641
|
@ -216,7 +216,7 @@
|
||||||
@ stdcall I_CryptSetTls(long ptr)
|
@ stdcall I_CryptSetTls(long ptr)
|
||||||
@ stdcall I_CryptUninstallAsn1Module(long)
|
@ stdcall I_CryptUninstallAsn1Module(long)
|
||||||
@ stub I_CryptUninstallOssGlobal
|
@ stub I_CryptUninstallOssGlobal
|
||||||
@ stub PFXExportCertStore
|
@ stdcall PFXExportCertStore(ptr ptr ptr long)
|
||||||
@ stdcall PFXExportCertStoreEx(ptr ptr ptr ptr long)
|
@ stdcall PFXExportCertStoreEx(ptr ptr ptr ptr long)
|
||||||
@ stub PFXImportCertStore
|
@ stub PFXImportCertStore
|
||||||
@ stub RegCreateHKCUKeyExU
|
@ stub RegCreateHKCUKeyExU
|
||||||
|
|
|
@ -4499,6 +4499,12 @@ BOOL WINAPI CryptEncodeObjectEx(DWORD dwCertEncodingType, LPCSTR lpszStructType,
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI PFXExportCertStore(HCERTSTORE hStore, CRYPT_DATA_BLOB *pPFX,
|
||||||
|
LPCWSTR szPassword, DWORD dwFlags)
|
||||||
|
{
|
||||||
|
return PFXExportCertStoreEx(hStore, pPFX, szPassword, NULL, dwFlags);
|
||||||
|
}
|
||||||
|
|
||||||
BOOL WINAPI PFXExportCertStoreEx(HCERTSTORE hStore, CRYPT_DATA_BLOB *pPFX,
|
BOOL WINAPI PFXExportCertStoreEx(HCERTSTORE hStore, CRYPT_DATA_BLOB *pPFX,
|
||||||
LPCWSTR szPassword, void *pvReserved, DWORD dwFlags)
|
LPCWSTR szPassword, void *pvReserved, DWORD dwFlags)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue