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
5ed719d5
Commit
5ed719d5
authored
Feb 05, 2015
by
Austin English
Committed by
Alexandre Julliard
Feb 06, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cryptui: Add CryptUIDlgSelectCertificateFromStore stub.
parent
a1543a3f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
cryptui.spec
dlls/cryptui/cryptui.spec
+1
-1
main.c
dlls/cryptui/main.c
+8
-0
No files found.
dlls/cryptui/cryptui.spec
View file @
5ed719d5
...
...
@@ -3,7 +3,7 @@
3 stub CryptUIDlgFreeCAContext
4 stub CryptUIDlgSelectCA
5 stdcall CryptUIDlgSelectCertificateA(ptr)
6 st
ub CryptUIDlgSelectCertificateFromStore
6 st
dcall CryptUIDlgSelectCertificateFromStore(ptr ptr wstr wstr long long ptr)
7 stdcall CryptUIDlgSelectCertificateW(ptr)
8 stdcall CryptUIDlgSelectStoreA(ptr)
9 stdcall CryptUIDlgSelectStoreW(ptr)
...
...
dlls/cryptui/main.c
View file @
5ed719d5
...
...
@@ -7049,3 +7049,11 @@ PCCERT_CONTEXT WINAPI CryptUIDlgSelectCertificateA(PCCRYPTUI_SELECTCERTIFICATE_S
FIXME
(
"%p: stub
\n
"
,
pcsc
);
return
NULL
;
}
PCCERT_CONTEXT
WINAPI
CryptUIDlgSelectCertificateFromStore
(
HCERTSTORE
hCertStore
,
HWND
hwnd
,
LPCWSTR
pwszTitle
,
LPCWSTR
pwszDisplayString
,
DWORD
dwDontUseColumn
,
DWORD
dwFlags
,
void
*
pvReserved
)
{
FIXME
(
"%p %p %s %s %d %d %p: stub
\n
"
,
hCertStore
,
hwnd
,
debugstr_w
(
pwszTitle
),
debugstr_w
(
pwszDisplayString
),
dwDontUseColumn
,
dwFlags
,
pvReserved
);
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