cryptui: Add CryptUIDlgSelectCertificateFromStore stub.

This commit is contained in:
Austin English 2015-02-05 16:24:00 -06:00 committed by Alexandre Julliard
parent a1543a3f7b
commit 5ed719d590
2 changed files with 9 additions and 1 deletions

View File

@ -3,7 +3,7 @@
3 stub CryptUIDlgFreeCAContext
4 stub CryptUIDlgSelectCA
5 stdcall CryptUIDlgSelectCertificateA(ptr)
6 stub CryptUIDlgSelectCertificateFromStore
6 stdcall CryptUIDlgSelectCertificateFromStore(ptr ptr wstr wstr long long ptr)
7 stdcall CryptUIDlgSelectCertificateW(ptr)
8 stdcall CryptUIDlgSelectStoreA(ptr)
9 stdcall CryptUIDlgSelectStoreW(ptr)

View File

@ -7049,3 +7049,11 @@ PCCERT_CONTEXT WINAPI CryptUIDlgSelectCertificateA(PCCRYPTUI_SELECTCERTIFICATE_S
FIXME("%p: stub\n", pcsc);
return NULL;
}
PCCERT_CONTEXT WINAPI CryptUIDlgSelectCertificateFromStore(HCERTSTORE hCertStore, HWND hwnd, LPCWSTR pwszTitle,
LPCWSTR pwszDisplayString, DWORD dwDontUseColumn,
DWORD dwFlags, void *pvReserved)
{
FIXME("%p %p %s %s %d %d %p: stub\n", hCertStore, hwnd, debugstr_w(pwszTitle), debugstr_w(pwszDisplayString), dwDontUseColumn, dwFlags, pvReserved);
return NULL;
}