Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
ee069f24
Commit
ee069f24
authored
Mar 22, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Mar 22, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wintrust: Use the definition of WINTRUST_ACTION_GENERIC_VERIFY_V2 in softpub.h.
parent
cfef0fee
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
wintrust_main.c
dlls/wintrust/wintrust_main.c
+3
-3
No files found.
dlls/wintrust/wintrust_main.c
View file @
ee069f24
...
...
@@ -25,6 +25,7 @@
#include "winerror.h"
#include "guiddef.h"
#include "wintrust.h"
#include "softpub.h"
#include "mscat.h"
#include "objbase.h"
...
...
@@ -86,8 +87,7 @@ BOOL WINAPI CryptCATAdminReleaseContext(HCATADMIN hCatAdmin, DWORD dwFlags )
*/
LONG
WINAPI
WinVerifyTrust
(
HWND
hwnd
,
GUID
*
ActionID
,
WINTRUST_DATA
*
ActionData
)
{
static
const
GUID
WINTRUST_ACTION_GENERIC_VERIFY_V2
=
{
0xaac56b
,
0xcd44
,
0x11d0
,
{
0x8c
,
0xc2
,
0x00
,
0xc0
,
0x4f
,
0xc2
,
0x95
,
0xee
}};
static
const
GUID
gen_verify_v2
=
WINTRUST_ACTION_GENERIC_VERIFY_V2
;
FIXME
(
"%p %s %p
\n
"
,
hwnd
,
debugstr_guid
(
ActionID
),
ActionData
);
...
...
@@ -104,7 +104,7 @@ LONG WINAPI WinVerifyTrust( HWND hwnd, GUID *ActionID, WINTRUST_DATA* ActionDat
*
*/
if
(
IsEqualCLSID
(
ActionID
,
&
WINTRUST_ACTION_GENERIC_VERIFY_V
2
))
if
(
IsEqualCLSID
(
ActionID
,
&
gen_verify_v
2
))
return
TRUST_E_PROVIDER_UNKNOWN
;
return
ERROR_SUCCESS
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment