Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
398b62ba
Commit
398b62ba
authored
Oct 23, 2011
by
Juan Lang
Committed by
Alexandre Julliard
Oct 24, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wintrust: Add FindCertsByIssuer stub.
parent
259dc8c1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletion
+14
-1
wintrust.spec
dlls/wintrust/wintrust.spec
+1
-1
wintrust_main.c
dlls/wintrust/wintrust_main.c
+13
-0
No files found.
dlls/wintrust/wintrust.spec
View file @
398b62ba
...
...
@@ -45,7 +45,7 @@
@ stdcall DriverCleanupPolicy(ptr)
@ stdcall DriverFinalPolicy(ptr)
@ stdcall DriverInitializePolicy(ptr)
@ st
ub FindCertsByIssuer
@ st
dcall FindCertsByIssuer(ptr ptr ptr ptr long wstr long)
@ stdcall GenericChainCertificateTrust(ptr)
@ stdcall GenericChainFinalProv(ptr)
@ stdcall HTTPSCertificateTrust(ptr)
...
...
dlls/wintrust/wintrust_main.c
View file @
398b62ba
...
...
@@ -1216,3 +1216,16 @@ BOOL WINAPI IsCatalogFile(HANDLE hFile, WCHAR *pwszFileName)
return
FALSE
;
return
IsEqualGUID
(
&
guid
,
&
catGUID
);
}
/***********************************************************************
* FindCertsByIssuer
*/
HRESULT
WINAPI
FindCertsByIssuer
(
PCERT_CHAIN
pCertChains
,
DWORD
*
pcbCertChains
,
DWORD
*
pcCertChains
,
BYTE
*
pbEncodedIssuerName
,
DWORD
cbEncodedIssuerName
,
LPCWSTR
pwszPurpose
,
DWORD
dwKeySpec
)
{
FIXME
(
"(%p, %p, %p, %p, %d, %s, %d): stub
\n
"
,
pCertChains
,
pcbCertChains
,
pcCertChains
,
pbEncodedIssuerName
,
cbEncodedIssuerName
,
debugstr_w
(
pwszPurpose
),
dwKeySpec
);
return
E_FAIL
;
}
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