mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 20:59:54 +00:00
cryptui: Add a stub implementation of CryptUIDlgViewCertificateW.
This commit is contained in:
parent
433027a377
commit
1f3e3b848b
@ -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
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user