Commit d15d45e5 authored by Alexander Morozov's avatar Alexander Morozov Committed by Alexandre Julliard

cryptui: Add stubs for CryptUIDlgSelectCertificateA/W.

parent ebfcc25d
......@@ -2,9 +2,9 @@
2 stdcall CryptUIDlgCertMgr(ptr)
3 stub CryptUIDlgFreeCAContext
4 stub CryptUIDlgSelectCA
5 stub CryptUIDlgSelectCertificateA
5 stdcall CryptUIDlgSelectCertificateA(ptr)
6 stub CryptUIDlgSelectCertificateFromStore
7 stub CryptUIDlgSelectCertificateW
7 stdcall CryptUIDlgSelectCertificateW(ptr)
8 stdcall CryptUIDlgSelectStoreA(ptr)
9 stdcall CryptUIDlgSelectStoreW(ptr)
10 stub CryptUIDlgViewCRLA
......
......@@ -7043,3 +7043,15 @@ BOOL WINAPI CryptUIDlgViewSignerInfoA(CRYPTUI_VIEWSIGNERINFO_STRUCTA *pcvsi)
FIXME("%p: stub\n", pcvsi);
return FALSE;
}
PCCERT_CONTEXT WINAPI CryptUIDlgSelectCertificateW(PCCRYPTUI_SELECTCERTIFICATE_STRUCTW pcsc)
{
FIXME("%p: stub\n", pcsc);
return NULL;
}
PCCERT_CONTEXT WINAPI CryptUIDlgSelectCertificateA(PCCRYPTUI_SELECTCERTIFICATE_STRUCTA pcsc)
{
FIXME("%p: stub\n", pcsc);
return NULL;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment