Module: wine Branch: master Commit: 1f3e3b848bfdb55e2a643348c63d634b2150a16f URL: http://source.winehq.org/git/wine.git/?a=commit;h=1f3e3b848bfdb55e2a643348c6...
Author: Hans Leidekker hans@codeweavers.com Date: Thu Sep 11 11:47:14 2008 +0200
cryptui: Add a stub implementation of CryptUIDlgViewCertificateW.
---
dlls/cryptui/cryptui.spec | 2 +- dlls/cryptui/main.c | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletions(-)
diff --git a/dlls/cryptui/cryptui.spec b/dlls/cryptui/cryptui.spec index b023ed2..ad5cb4b 100644 --- a/dlls/cryptui/cryptui.spec +++ b/dlls/cryptui/cryptui.spec @@ -14,7 +14,7 @@ 14 stub CryptUIDlgViewCertificateA 15 stub CryptUIDlgViewCertificatePropertiesA 16 stub CryptUIDlgViewCertificatePropertiesW -17 stub CryptUIDlgViewCertificateW +17 stdcall CryptUIDlgViewCertificateW(ptr ptr) 18 stub CryptUIDlgViewContext 19 stub CryptUIDlgViewSignerInfoA 20 stub CryptUIDlgViewSignerInfoW diff --git a/dlls/cryptui/main.c b/dlls/cryptui/main.c index 8784915..4bf456a 100644 --- a/dlls/cryptui/main.c +++ b/dlls/cryptui/main.c @@ -55,3 +55,11 @@ BOOL WINAPI CryptUIDlgCertMgr(PCCRYPTUI_CERT_MGR_STRUCT pCryptUICertMgr) FIXME("(%p): stub\n", pCryptUICertMgr); return FALSE; } + +BOOL WINAPI CryptUIDlgViewCertificateW(PCCRYPTUI_VIEWCERTIFICATE_STRUCTW pCertViewInfo, + BOOL *pfPropertiesChanged) +{ + FIXME("(%p, %p): stub\n", pCertViewInfo, pfPropertiesChanged); + if (pfPropertiesChanged) *pfPropertiesChanged = FALSE; + return TRUE; +}