cryptui: add CryptUIWizDigitalSign stub

Austin English austinenglish at gmail.com
Wed Feb 11 03:09:48 CST 2015


Fixes https://bugs.winehq.org/show_bug.cgi?id=29938

-- 
-Austin
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.winehq.org/pipermail/wine-patches/attachments/20150211/1c7b7913/attachment.html>
-------------- next part --------------
diff --git a/dlls/cryptui/cryptui.spec b/dlls/cryptui/cryptui.spec
index c4b579a..babb955 100644
--- a/dlls/cryptui/cryptui.spec
+++ b/dlls/cryptui/cryptui.spec
@@ -30,7 +30,7 @@
 30 stub CryptUIWizBuildCTL
 31 stub CryptUIWizCertRequest
 32 stub CryptUIWizCreateCertRequestNoDS
-33 stub CryptUIWizDigitalSign
+33 stdcall CryptUIWizDigitalSign(long ptr wstr ptr ptr)
 34 stdcall CryptUIWizExport(long ptr wstr ptr ptr)
 35 stub CryptUIWizFreeCertRequestNoDS
 36 stub CryptUIWizFreeDigitalSignContext
diff --git a/dlls/cryptui/main.c b/dlls/cryptui/main.c
index 9f76456..616ccf7 100644
--- a/dlls/cryptui/main.c
+++ b/dlls/cryptui/main.c
@@ -7057,3 +7057,10 @@ PCCERT_CONTEXT WINAPI CryptUIDlgSelectCertificateFromStore(HCERTSTORE hCertStore
     FIXME("%p %p %s %s %d %d %p: stub\n", hCertStore, hwnd, debugstr_w(pwszTitle), debugstr_w(pwszDisplayString), dwDontUseColumn, dwFlags, pvReserved);
     return NULL;
 }
+
+BOOL WINAPI CryptUIWizDigitalSign(DWORD flags, HWND parent, LPCWSTR title, PCCRYPTUI_WIZ_DIGITAL_SIGN_INFO info,
+                                  PCCRYPTUI_WIZ_DIGITAL_SIGN_CONTEXT *context)
+{
+    FIXME("%d %p %s %p %p: stub\n", flags, parent, debugstr_w(title), info, context);
+    return FALSE;
+}


More information about the wine-patches mailing list