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
c57fff10
Commit
c57fff10
authored
Dec 19, 2008
by
Juan Lang
Committed by
Alexandre Julliard
Dec 22, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cryptui: Add stubs for CryptUIDlgSelectStoreA/W.
parent
1ccc170b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
2 deletions
+24
-2
cryptui.spec
dlls/cryptui/cryptui.spec
+2
-2
main.c
dlls/cryptui/main.c
+22
-0
No files found.
dlls/cryptui/cryptui.spec
View file @
c57fff10
...
...
@@ -5,8 +5,8 @@
5 stub CryptUIDlgSelectCertificateA
6 stub CryptUIDlgSelectCertificateFromStore
7 stub CryptUIDlgSelectCertificateW
8 st
ub CryptUIDlgSelectStoreA
9 st
ub CryptUIDlgSelectStoreW
8 st
dcall CryptUIDlgSelectStoreA(ptr)
9 st
dcall CryptUIDlgSelectStoreW(ptr)
10 stub CryptUIDlgViewCRLA
11 stub CryptUIDlgViewCRLW
12 stub CryptUIDlgViewCTLA
...
...
dlls/cryptui/main.c
View file @
c57fff10
...
...
@@ -73,6 +73,28 @@ BOOL WINAPI CryptUIDlgCertMgr(PCCRYPTUI_CERT_MGR_STRUCT pCryptUICertMgr)
return
FALSE
;
}
/* FIXME: real names are unknown, functions are undocumented */
struct
_CRYPTUI_SELECTSTORE_INFO_A
;
struct
_CRYPTUI_SELECTSTORE_INFO_W
;
/***********************************************************************
* CryptUIDlgSelectStoreA (CRYPTUI.@)
*/
HCERTSTORE
WINAPI
CryptUIDlgSelectStoreA
(
struct
_CRYPTUI_SELECTSTORE_INFO_A
*
info
)
{
FIXME
(
"(%p): stub
\n
"
,
info
);
return
NULL
;
}
/***********************************************************************
* CryptUIDlgSelectStoreW (CRYPTUI.@)
*/
HCERTSTORE
WINAPI
CryptUIDlgSelectStoreW
(
struct
_CRYPTUI_SELECTSTORE_INFO_W
*
info
)
{
FIXME
(
"(%p): stub
\n
"
,
info
);
return
NULL
;
}
/***********************************************************************
* CryptUIDlgViewCertificateA (CRYPTUI.@)
*/
...
...
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