cryptui: Add stubs for CryptUIDlgSelectCertificateA/W.
This commit is contained in:
parent
ebfcc25da0
commit
d15d45e5d1
@ -2,9 +2,9 @@
|
|||||||
2 stdcall CryptUIDlgCertMgr(ptr)
|
2 stdcall CryptUIDlgCertMgr(ptr)
|
||||||
3 stub CryptUIDlgFreeCAContext
|
3 stub CryptUIDlgFreeCAContext
|
||||||
4 stub CryptUIDlgSelectCA
|
4 stub CryptUIDlgSelectCA
|
||||||
5 stub CryptUIDlgSelectCertificateA
|
5 stdcall CryptUIDlgSelectCertificateA(ptr)
|
||||||
6 stub CryptUIDlgSelectCertificateFromStore
|
6 stub CryptUIDlgSelectCertificateFromStore
|
||||||
7 stub CryptUIDlgSelectCertificateW
|
7 stdcall CryptUIDlgSelectCertificateW(ptr)
|
||||||
8 stdcall CryptUIDlgSelectStoreA(ptr)
|
8 stdcall CryptUIDlgSelectStoreA(ptr)
|
||||||
9 stdcall CryptUIDlgSelectStoreW(ptr)
|
9 stdcall CryptUIDlgSelectStoreW(ptr)
|
||||||
10 stub CryptUIDlgViewCRLA
|
10 stub CryptUIDlgViewCRLA
|
||||||
|
@ -7043,3 +7043,15 @@ BOOL WINAPI CryptUIDlgViewSignerInfoA(CRYPTUI_VIEWSIGNERINFO_STRUCTA *pcvsi)
|
|||||||
FIXME("%p: stub\n", pcvsi);
|
FIXME("%p: stub\n", pcvsi);
|
||||||
return FALSE;
|
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;
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user