mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 04:39:45 +00:00
crypt32: Add stub for PFXImportCertStore.
This commit is contained in:
parent
2ffc042ebf
commit
3ae5e99cba
@ -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
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user