mirror of
https://github.com/reactos/wine.git
synced 2025-02-01 09:42:14 +00:00
cryptui: Add stubs for CryptUIDlgSelectStoreA/W.
This commit is contained in:
parent
1ccc170b32
commit
c57fff101f
@ -5,8 +5,8 @@
|
||||
5 stub CryptUIDlgSelectCertificateA
|
||||
6 stub CryptUIDlgSelectCertificateFromStore
|
||||
7 stub CryptUIDlgSelectCertificateW
|
||||
8 stub CryptUIDlgSelectStoreA
|
||||
9 stub CryptUIDlgSelectStoreW
|
||||
8 stdcall CryptUIDlgSelectStoreA(ptr)
|
||||
9 stdcall CryptUIDlgSelectStoreW(ptr)
|
||||
10 stub CryptUIDlgViewCRLA
|
||||
11 stub CryptUIDlgViewCRLW
|
||||
12 stub CryptUIDlgViewCTLA
|
||||
|
@ -73,6 +73,28 @@ BOOL WINAPI CryptUIDlgCertMgr(PCCRYPTUI_CERT_MGR_STRUCT pCryptUICertMgr)
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/* FIXME: real names are unknown, functions are undocumented */
|
||||
struct _CRYPTUI_SELECTSTORE_INFO_A;
|
||||
struct _CRYPTUI_SELECTSTORE_INFO_W;
|
||||
|
||||
/***********************************************************************
|
||||
* CryptUIDlgSelectStoreA (CRYPTUI.@)
|
||||
*/
|
||||
HCERTSTORE WINAPI CryptUIDlgSelectStoreA(struct _CRYPTUI_SELECTSTORE_INFO_A *info)
|
||||
{
|
||||
FIXME("(%p): stub\n", info);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* CryptUIDlgSelectStoreW (CRYPTUI.@)
|
||||
*/
|
||||
HCERTSTORE WINAPI CryptUIDlgSelectStoreW(struct _CRYPTUI_SELECTSTORE_INFO_W *info)
|
||||
{
|
||||
FIXME("(%p): stub\n", info);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* CryptUIDlgViewCertificateA (CRYPTUI.@)
|
||||
*/
|
||||
|
Loading…
x
Reference in New Issue
Block a user