Commit 33407c63 authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

wintrust: Forward WinVerifyTrustEx to WinVerifyTrust.

parent ba0b7a5d
......@@ -94,8 +94,7 @@ LONG WINAPI WinVerifyTrust( HWND hwnd, GUID *ActionID, LPVOID ActionData )
HRESULT WINAPI WinVerifyTrustEx( HWND hwnd, GUID *ActionID,
WINTRUST_DATA* ActionData )
{
FIXME("%p %s %p\n", hwnd, debugstr_guid(ActionID), ActionData);
return S_OK;
return WinVerifyTrust(hwnd, ActionID, ActionData);
}
/***********************************************************************
......
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