crypt32: Add stub for PFXImportCertStore.
This commit is contained in:
parent
2ffc042ebf
commit
3ae5e99cba
@ -218,7 +218,7 @@
|
|||||||
@ stub I_CryptUninstallOssGlobal
|
@ stub I_CryptUninstallOssGlobal
|
||||||
@ stdcall PFXExportCertStore(ptr ptr ptr long)
|
@ stdcall PFXExportCertStore(ptr ptr ptr long)
|
||||||
@ stdcall PFXExportCertStoreEx(ptr ptr ptr ptr long)
|
@ stdcall PFXExportCertStoreEx(ptr ptr ptr ptr long)
|
||||||
@ stub PFXImportCertStore
|
@ stdcall PFXImportCertStore(ptr ptr long)
|
||||||
@ stdcall PFXIsPFXBlob(ptr)
|
@ stdcall PFXIsPFXBlob(ptr)
|
||||||
@ stub RegCreateHKCUKeyExU
|
@ stub RegCreateHKCUKeyExU
|
||||||
@ stub RegCreateKeyExU
|
@ stub RegCreateKeyExU
|
||||||
|
@ -5546,3 +5546,10 @@ BOOL WINAPI PFXIsPFXBlob(CRYPT_DATA_BLOB *pPFX)
|
|||||||
ret = FALSE;
|
ret = FALSE;
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
HCERTSTORE WINAPI PFXImportCertStore(CRYPT_DATA_BLOB *pPFX, LPCWSTR szPassword,
|
||||||
|
DWORD dwFlags)
|
||||||
|
{
|
||||||
|
FIXME("(%p, %p, %08x): stub\n", pPFX, szPassword, dwFlags);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user