cryptui: Add CryptUIDlgSelectCertificateFromStore stub.
This commit is contained in:
parent
a1543a3f7b
commit
5ed719d590
|
@ -3,7 +3,7 @@
|
||||||
3 stub CryptUIDlgFreeCAContext
|
3 stub CryptUIDlgFreeCAContext
|
||||||
4 stub CryptUIDlgSelectCA
|
4 stub CryptUIDlgSelectCA
|
||||||
5 stdcall CryptUIDlgSelectCertificateA(ptr)
|
5 stdcall CryptUIDlgSelectCertificateA(ptr)
|
||||||
6 stub CryptUIDlgSelectCertificateFromStore
|
6 stdcall CryptUIDlgSelectCertificateFromStore(ptr ptr wstr wstr long long ptr)
|
||||||
7 stdcall CryptUIDlgSelectCertificateW(ptr)
|
7 stdcall CryptUIDlgSelectCertificateW(ptr)
|
||||||
8 stdcall CryptUIDlgSelectStoreA(ptr)
|
8 stdcall CryptUIDlgSelectStoreA(ptr)
|
||||||
9 stdcall CryptUIDlgSelectStoreW(ptr)
|
9 stdcall CryptUIDlgSelectStoreW(ptr)
|
||||||
|
|
|
@ -7049,3 +7049,11 @@ PCCERT_CONTEXT WINAPI CryptUIDlgSelectCertificateA(PCCRYPTUI_SELECTCERTIFICATE_S
|
||||||
FIXME("%p: stub\n", pcsc);
|
FIXME("%p: stub\n", pcsc);
|
||||||
return NULL;
|
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;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue