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
6393fed2
Commit
6393fed2
authored
Sep 07, 2006
by
Francois Gouget
Committed by
Alexandre Julliard
Sep 11, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wintrust: In recent SDKs, WinVerifyTrust()'s last parameter is a void pointer.
parent
e4fca883
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
wintrust_main.c
dlls/wintrust/wintrust_main.c
+1
-1
wintrust.h
include/wintrust.h
+1
-1
No files found.
dlls/wintrust/wintrust_main.c
View file @
6393fed2
...
...
@@ -150,7 +150,7 @@ BOOL WINAPI TrustIsCertificateSelfSigned( PCCERT_CONTEXT cert )
* Trust providers can be found at:
* HKLM\SOFTWARE\Microsoft\Cryptography\Providers\Trust\
*/
LONG
WINAPI
WinVerifyTrust
(
HWND
hwnd
,
GUID
*
ActionID
,
WINTRUST_DATA
*
ActionData
)
LONG
WINAPI
WinVerifyTrust
(
HWND
hwnd
,
GUID
*
ActionID
,
LPVOID
ActionData
)
{
FIXME
(
"%p %s %p
\n
"
,
hwnd
,
debugstr_guid
(
ActionID
),
ActionData
);
return
ERROR_SUCCESS
;
...
...
include/wintrust.h
View file @
6393fed2
...
...
@@ -317,7 +317,7 @@ BOOL WINAPI WintrustAddActionID(GUID*,DWORD,CRYPT_REGISTER_ACTIONID*);
BOOL
WINAPI
WintrustRemoveActionID
(
GUID
*
);
BOOL
WINAPI
WintrustLoadFunctionPointers
(
GUID
*
,
CRYPT_PROVIDER_FUNCTIONS
*
);
void
WINAPI
WintrustGetRegPolicyFlags
(
DWORD
*
);
LONG
WINAPI
WinVerifyTrust
(
HWND
,
GUID
*
,
WINTRUST_DATA
*
);
LONG
WINAPI
WinVerifyTrust
(
HWND
,
GUID
*
,
LPVOID
);
HRESULT
WINAPI
WinVerifyTrustEx
(
HWND
,
GUID
*
,
WINTRUST_DATA
*
);
CRYPT_PROVIDER_SGNR
*
WINAPI
WTHelperGetProvSignerFromChain
(
...
...
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