wintrust: Add stub implementations of HTTPSCertificateTrust and HTTPSFinalProv.
This commit is contained in:
parent
e3a7ae8a30
commit
f0cf772d52
|
@ -1060,3 +1060,15 @@ HRESULT WINAPI SoftpubCleanup(CRYPT_PROVIDER_DATA *data)
|
|||
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
HRESULT WINAPI HTTPSCertificateTrust(CRYPT_PROVIDER_DATA *data)
|
||||
{
|
||||
FIXME("(%p)\n", data);
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
HRESULT WINAPI HTTPSFinalProv(CRYPT_PROVIDER_DATA *data)
|
||||
{
|
||||
FIXME("(%p)\n", data);
|
||||
return S_OK;
|
||||
}
|
||||
|
|
|
@ -48,8 +48,8 @@
|
|||
@ stub FindCertsByIssuer
|
||||
@ stdcall GenericChainCertificateTrust(ptr)
|
||||
@ stdcall GenericChainFinalProv(ptr)
|
||||
@ stub HTTPSCertificateTrust
|
||||
@ stub HTTPSFinalProv
|
||||
@ stdcall HTTPSCertificateTrust(ptr)
|
||||
@ stdcall HTTPSFinalProv(ptr)
|
||||
@ stub IsCatalogFile
|
||||
@ stub MsCatConstructHashTag
|
||||
@ stub MsCatFreeHashTag
|
||||
|
|
Loading…
Reference in New Issue