Commit c57fff10 authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

cryptui: Add stubs for CryptUIDlgSelectStoreA/W.

parent 1ccc170b
......@@ -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.@)
*/
......
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