Austin English : cryptui: Add CryptUIDlgSelectCertificateFromStore stub.

Alexandre Julliard julliard at wine.codeweavers.com
Fri Feb 6 10:41:39 CST 2015


Module: wine
Branch: master
Commit: 5ed719d590adbb17d72d200e04f8b2a319ae1e5f
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=5ed719d590adbb17d72d200e04f8b2a319ae1e5f

Author: Austin English <austinenglish at gmail.com>
Date:   Thu Feb  5 16:24:00 2015 -0600

cryptui: Add CryptUIDlgSelectCertificateFromStore stub.

---

 dlls/cryptui/cryptui.spec | 2 +-
 dlls/cryptui/main.c       | 8 ++++++++
 2 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/dlls/cryptui/cryptui.spec b/dlls/cryptui/cryptui.spec
index bce5de0..c4b579a 100644
--- a/dlls/cryptui/cryptui.spec
+++ b/dlls/cryptui/cryptui.spec
@@ -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)
diff --git a/dlls/cryptui/main.c b/dlls/cryptui/main.c
index 0aea379..9f76456 100644
--- a/dlls/cryptui/main.c
+++ b/dlls/cryptui/main.c
@@ -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;
+}




More information about the wine-cvs mailing list