cryptui: Add a stub implementation of CryptUIDlgViewCertificateW.

This commit is contained in:
Hans Leidekker 2008-09-11 11:47:14 +02:00 committed by Alexandre Julliard
parent 433027a377
commit 1f3e3b848b
2 changed files with 9 additions and 1 deletions

View File

@ -14,7 +14,7 @@
14 stub CryptUIDlgViewCertificateA 14 stub CryptUIDlgViewCertificateA
15 stub CryptUIDlgViewCertificatePropertiesA 15 stub CryptUIDlgViewCertificatePropertiesA
16 stub CryptUIDlgViewCertificatePropertiesW 16 stub CryptUIDlgViewCertificatePropertiesW
17 stub CryptUIDlgViewCertificateW 17 stdcall CryptUIDlgViewCertificateW(ptr ptr)
18 stub CryptUIDlgViewContext 18 stub CryptUIDlgViewContext
19 stub CryptUIDlgViewSignerInfoA 19 stub CryptUIDlgViewSignerInfoA
20 stub CryptUIDlgViewSignerInfoW 20 stub CryptUIDlgViewSignerInfoW

View File

@ -55,3 +55,11 @@ BOOL WINAPI CryptUIDlgCertMgr(PCCRYPTUI_CERT_MGR_STRUCT pCryptUICertMgr)
FIXME("(%p): stub\n", pCryptUICertMgr); FIXME("(%p): stub\n", pCryptUICertMgr);
return FALSE; return FALSE;
} }
BOOL WINAPI CryptUIDlgViewCertificateW(PCCRYPTUI_VIEWCERTIFICATE_STRUCTW pCertViewInfo,
BOOL *pfPropertiesChanged)
{
FIXME("(%p, %p): stub\n", pCertViewInfo, pfPropertiesChanged);
if (pfPropertiesChanged) *pfPropertiesChanged = FALSE;
return TRUE;
}