wintrust: Stub WTHelperCertCheckValidSignature.

This commit is contained in:
Aric Stewart 2009-06-24 16:45:00 +09:00 committed by Alexandre Julliard
parent 92ec4d5d0d
commit 2dca912aa9
2 changed files with 10 additions and 0 deletions

View File

@ -73,6 +73,7 @@
@ stub TrustFreeDecode
@ stdcall TrustIsCertificateSelfSigned(ptr)
@ stub TrustOpenStores
@ stdcall WTHelperCertCheckValidSignature(ptr)
@ stub WTHelperCertFindIssuerCertificate
@ stub WTHelperCertIsSelfSigned
@ stub WTHelperCheckCertUsage

View File

@ -1085,3 +1085,12 @@ BOOL WINAPI OpenPersonalTrustDBDialog(HWND hwnd)
uiCertMgr.pszInitUsageOID = NULL;
return CryptUIDlgCertMgr(&uiCertMgr);
}
/***********************************************************************
* WTHelperCertCheckValidSignature
*/
HRESULT WINAPI WTHelperCertCheckValidSignature(CRYPT_PROVIDER_DATA *pProvData)
{
FIXME("Stub\n");
return S_OK;
}