Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
de8a1603
Commit
de8a1603
authored
Mar 11, 2018
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Mar 12, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Add CryptSIPRetrieveSubjectGuidForCatalogFile stub.
Signed-off-by:
Alistair Leslie-Hughes
<
leslie_alistair@hotmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
8960cf3d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
crypt32.spec
dlls/crypt32/crypt32.spec
+1
-0
sip.c
dlls/crypt32/sip.c
+10
-0
No files found.
dlls/crypt32/crypt32.spec
View file @
de8a1603
...
...
@@ -177,6 +177,7 @@
@ stdcall CryptSIPRemoveProvider(ptr)
@ stdcall CryptSIPRemoveSignedDataMsg(ptr long)
@ stdcall CryptSIPRetrieveSubjectGuid(wstr long ptr)
@ stdcall CryptSIPRetrieveSubjectGuidForCatalogFile(wstr long ptr)
@ stdcall CryptSIPVerifyIndirectData(ptr ptr)
@ stub CryptSetAsyncParam
@ stdcall CryptSetOIDFunctionValue(long str str wstr long ptr long)
...
...
dlls/crypt32/sip.c
View file @
de8a1603
...
...
@@ -801,3 +801,13 @@ BOOL WINAPI CryptSIPVerifyIndirectData(SIP_SUBJECTINFO* pSubjectInfo,
TRACE
(
"returning %d
\n
"
,
ret
);
return
ret
;
}
/***********************************************************************
* CryptSIPRetrieveSubjectGuidForCatalogFile (CRYPT32.@)
*/
BOOL
WINAPI
CryptSIPRetrieveSubjectGuidForCatalogFile
(
LPCWSTR
filename
,
HANDLE
handle
,
GUID
*
subject
)
{
FIXME
(
"(%s %p %p)
\n
"
,
debugstr_w
(
filename
),
handle
,
subject
);
SetLastError
(
ERROR_INVALID_PARAMETER
);
return
FALSE
;
}
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