wintrust: Implement SoftpubDefCertInit.
This commit is contained in:
parent
661525c606
commit
5adeae168b
|
@ -27,6 +27,19 @@
|
|||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(wintrust);
|
||||
|
||||
HRESULT WINAPI SoftpubDefCertInit(CRYPT_PROVIDER_DATA *data)
|
||||
{
|
||||
HRESULT ret = S_FALSE;
|
||||
|
||||
TRACE("(%p)\n", data);
|
||||
|
||||
if (data->padwTrustStepErrors &&
|
||||
!data->padwTrustStepErrors[TRUSTERROR_STEP_FINAL_WVTINIT])
|
||||
ret = S_OK;
|
||||
TRACE("returning %08x\n", ret);
|
||||
return ret;
|
||||
}
|
||||
|
||||
HRESULT WINAPI SoftpubInitialize(CRYPT_PROVIDER_DATA *data)
|
||||
{
|
||||
HRESULT ret = S_FALSE;
|
||||
|
|
|
@ -59,7 +59,7 @@
|
|||
@ stdcall SoftpubAuthenticode(ptr)
|
||||
@ stdcall SoftpubCheckCert(ptr long long long)
|
||||
@ stdcall SoftpubCleanup(ptr)
|
||||
@ stub SoftpubDefCertInit
|
||||
@ stdcall SoftpubDefCertInit(ptr)
|
||||
@ stdcall SoftpubDllRegisterServer()
|
||||
@ stdcall SoftpubDllUnregisterServer()
|
||||
@ stub SoftpubDumpStructure
|
||||
|
|
Loading…
Reference in New Issue