Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
1c3d02ad
Commit
1c3d02ad
authored
Aug 26, 2008
by
Huw Davies
Committed by
Alexandre Julliard
Aug 27, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cryptdlg: Add stubs for CertViewProperties.
parent
d5866612
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
2 deletions
+20
-2
cryptdlg.spec
dlls/cryptdlg/cryptdlg.spec
+2
-2
main.c
dlls/cryptdlg/main.c
+18
-0
No files found.
dlls/cryptdlg/cryptdlg.spec
View file @
1c3d02ad
...
...
@@ -13,8 +13,8 @@
13 stub CertModifyCertificatesToTrust
14 stub CertSelectCertificateA
15 stub CertSelectCertificateW
16 st
ub CertViewPropertiesA
17 st
ub CertViewPropertiesW
16 st
dcall CertViewPropertiesA(ptr)
17 st
dcall CertViewPropertiesW(ptr)
18 stdcall -private DllRegisterServer()
19 stdcall -private DllUnregisterServer()
20 stdcall GetFriendlyNameOfCertA(ptr ptr long)
...
...
dlls/cryptdlg/main.c
View file @
1c3d02ad
...
...
@@ -106,6 +106,24 @@ HRESULT WINAPI CertTrustFinalPolicy(CRYPT_PROVIDER_DATA *pProvData)
}
/***********************************************************************
* CertViewPropertiesA (CRYPTDLG.@)
*/
BOOL
WINAPI
CertViewPropertiesA
(
CERT_VIEWPROPERTIES_STRUCT_A
*
info
)
{
FIXME
(
"(%p): stub
\n
"
,
info
);
return
FALSE
;
}
/***********************************************************************
* CertViewPropertiesW (CRYPTDLG.@)
*/
BOOL
WINAPI
CertViewPropertiesW
(
CERT_VIEWPROPERTIES_STRUCT_W
*
info
)
{
FIXME
(
"(%p): stub
\n
"
,
info
);
return
FALSE
;
}
/***********************************************************************
* DllRegisterServer (CRYPTDLG.@)
*/
HRESULT
WINAPI
DllRegisterServer
(
void
)
...
...
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