Commit a221e0e2 authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

Return TRUST_E_PROVIDER_UNKNOWN until implemented.

parent edc06133
...@@ -68,8 +68,16 @@ BOOL WINAPI CryptCATAdminReleaseContext(HCATADMIN hCatAdmin, DWORD dwFlags ) ...@@ -68,8 +68,16 @@ BOOL WINAPI CryptCATAdminReleaseContext(HCATADMIN hCatAdmin, DWORD dwFlags )
*/ */
LONG WINAPI WinVerifyTrust( HWND hwnd, GUID *ActionID, WINTRUST_DATA* ActionData ) LONG WINAPI WinVerifyTrust( HWND hwnd, GUID *ActionID, WINTRUST_DATA* ActionData )
{ {
FIXME("%p %p %p\n", hwnd, ActionID, ActionData); FIXME("%p %s %p\n", hwnd, debugstr_guid(ActionID), ActionData);
return ERROR_SUCCESS;
/* Trust providers can be found at:
* HKLM\SOFTWARE\Microsoft\Cryptography\Providers\Trust\CertCheck\
*
* As we do not have any trust providers yet (or cater for it),
* return just that.
*/
return TRUST_E_PROVIDER_UNKNOWN;
} }
/*********************************************************************** /***********************************************************************
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment