crypt32: Add stub for PFXExportCertStoreEx.
This commit is contained in:
parent
f2ee8242a2
commit
6e32746f6e
|
@ -217,6 +217,7 @@
|
||||||
@ stdcall I_CryptUninstallAsn1Module(long)
|
@ stdcall I_CryptUninstallAsn1Module(long)
|
||||||
@ stub I_CryptUninstallOssGlobal
|
@ stub I_CryptUninstallOssGlobal
|
||||||
@ stub PFXExportCertStore
|
@ stub PFXExportCertStore
|
||||||
|
@ stdcall PFXExportCertStoreEx(ptr ptr ptr ptr long)
|
||||||
@ stub PFXImportCertStore
|
@ stub PFXImportCertStore
|
||||||
@ stub RegCreateHKCUKeyExU
|
@ stub RegCreateHKCUKeyExU
|
||||||
@ stub RegCreateKeyExU
|
@ stub RegCreateKeyExU
|
||||||
|
|
|
@ -4499,6 +4499,14 @@ BOOL WINAPI CryptEncodeObjectEx(DWORD dwCertEncodingType, LPCSTR lpszStructType,
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI PFXExportCertStoreEx(HCERTSTORE hStore, CRYPT_DATA_BLOB *pPFX,
|
||||||
|
LPCWSTR szPassword, void *pvReserved, DWORD dwFlags)
|
||||||
|
{
|
||||||
|
FIXME_(crypt)("(%p, %p, %p, %p, %08x): stub\n", hStore, pPFX, szPassword,
|
||||||
|
pvReserved, dwFlags);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
BOOL WINAPI CryptExportPublicKeyInfo(HCRYPTPROV_OR_NCRYPT_KEY_HANDLE hCryptProv, DWORD dwKeySpec,
|
BOOL WINAPI CryptExportPublicKeyInfo(HCRYPTPROV_OR_NCRYPT_KEY_HANDLE hCryptProv, DWORD dwKeySpec,
|
||||||
DWORD dwCertEncodingType, PCERT_PUBLIC_KEY_INFO pInfo, DWORD *pcbInfo)
|
DWORD dwCertEncodingType, PCERT_PUBLIC_KEY_INFO pInfo, DWORD *pcbInfo)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue