crypt32: Add stub for PFXImportCertStore.

This commit is contained in:
Juan Lang 2009-01-27 09:00:25 -08:00 committed by Alexandre Julliard
parent 2ffc042ebf
commit 3ae5e99cba
2 changed files with 8 additions and 1 deletions

View File

@ -218,7 +218,7 @@
@ stub I_CryptUninstallOssGlobal
@ stdcall PFXExportCertStore(ptr ptr ptr long)
@ stdcall PFXExportCertStoreEx(ptr ptr ptr ptr long)
@ stub PFXImportCertStore
@ stdcall PFXImportCertStore(ptr ptr long)
@ stdcall PFXIsPFXBlob(ptr)
@ stub RegCreateHKCUKeyExU
@ stub RegCreateKeyExU

View File

@ -5546,3 +5546,10 @@ BOOL WINAPI PFXIsPFXBlob(CRYPT_DATA_BLOB *pPFX)
ret = FALSE;
return ret;
}
HCERTSTORE WINAPI PFXImportCertStore(CRYPT_DATA_BLOB *pPFX, LPCWSTR szPassword,
DWORD dwFlags)
{
FIXME("(%p, %p, %08x): stub\n", pPFX, szPassword, dwFlags);
return NULL;
}