diff --git a/dlls/cryptui/cryptui.spec b/dlls/cryptui/cryptui.spec index b023ed2ab6..ad5cb4ba8d 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 87849156e5..4bf456a157 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; +}