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
d15d45e5
Commit
d15d45e5
authored
Jul 20, 2011
by
Alexander Morozov
Committed by
Alexandre Julliard
Aug 26, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cryptui: Add stubs for CryptUIDlgSelectCertificateA/W.
parent
ebfcc25d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
2 deletions
+14
-2
cryptui.spec
dlls/cryptui/cryptui.spec
+2
-2
main.c
dlls/cryptui/main.c
+12
-0
No files found.
dlls/cryptui/cryptui.spec
View file @
d15d45e5
...
...
@@ -2,9 +2,9 @@
2 stdcall CryptUIDlgCertMgr(ptr)
3 stub CryptUIDlgFreeCAContext
4 stub CryptUIDlgSelectCA
5 st
ub CryptUIDlgSelectCertificateA
5 st
dcall CryptUIDlgSelectCertificateA(ptr)
6 stub CryptUIDlgSelectCertificateFromStore
7 st
ub CryptUIDlgSelectCertificateW
7 st
dcall CryptUIDlgSelectCertificateW(ptr)
8 stdcall CryptUIDlgSelectStoreA(ptr)
9 stdcall CryptUIDlgSelectStoreW(ptr)
10 stub CryptUIDlgViewCRLA
...
...
dlls/cryptui/main.c
View file @
d15d45e5
...
...
@@ -7043,3 +7043,15 @@ BOOL WINAPI CryptUIDlgViewSignerInfoA(CRYPTUI_VIEWSIGNERINFO_STRUCTA *pcvsi)
FIXME
(
"%p: stub
\n
"
,
pcvsi
);
return
FALSE
;
}
PCCERT_CONTEXT
WINAPI
CryptUIDlgSelectCertificateW
(
PCCRYPTUI_SELECTCERTIFICATE_STRUCTW
pcsc
)
{
FIXME
(
"%p: stub
\n
"
,
pcsc
);
return
NULL
;
}
PCCERT_CONTEXT
WINAPI
CryptUIDlgSelectCertificateA
(
PCCRYPTUI_SELECTCERTIFICATE_STRUCTA
pcsc
)
{
FIXME
(
"%p: stub
\n
"
,
pcsc
);
return
NULL
;
}
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