[pkg-wine-party] [wine] 329/376: cryptext: Add stubs for CryptExtAddPFX/CryptExtAddPFXW.

Michael Gilbert mgilbert at moszumanska.debian.org
Sun Dec 14 21:38:06 UTC 2014


This is an automated email from the git hooks/post-receive script.

mgilbert pushed a commit to branch master
in repository wine.

commit ca1bf14aaf5c076a7629e9565d20c1b26f8abc3f
Author: Austin English <austinenglish at gmail.com>
Date:   Fri Nov 21 15:17:36 2014 -0800

    cryptext: Add stubs for CryptExtAddPFX/CryptExtAddPFXW.
---
 dlls/cryptext/cryptext.spec   |  4 ++--
 dlls/cryptext/cryptext_main.c | 18 ++++++++++++++++++
 2 files changed, 20 insertions(+), 2 deletions(-)

diff --git a/dlls/cryptext/cryptext.spec b/dlls/cryptext/cryptext.spec
index b0e920e..0dba38e 100644
--- a/dlls/cryptext/cryptext.spec
+++ b/dlls/cryptext/cryptext.spec
@@ -6,8 +6,8 @@
 @ stub CryptExtAddCTLW
 @ stub CryptExtAddP7R
 @ stub CryptExtAddP7RW
-@ stub CryptExtAddPFX
-@ stub CryptExtAddPFXW
+@ stdcall CryptExtAddPFX(str)
+@ stdcall CryptExtAddPFXW(wstr)
 @ stub CryptExtAddSPC
 @ stub CryptExtAddSPCW
 @ stub CryptExtOpenCAT
diff --git a/dlls/cryptext/cryptext_main.c b/dlls/cryptext/cryptext_main.c
index 75ede4e..473c326 100644
--- a/dlls/cryptext/cryptext_main.c
+++ b/dlls/cryptext/cryptext_main.c
@@ -43,3 +43,21 @@ BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, LPVOID reserved)
 
     return TRUE;
 }
+
+/***********************************************************************
+ * CryptExtAddPFX (CRYPTEXT.@)
+ */
+HRESULT WINAPI CryptExtAddPFX(LPCSTR filename)
+{
+    FIXME("stub: %s\n", debugstr_a(filename));
+    return E_NOTIMPL;
+}
+
+/***********************************************************************
+ * CryptExtAddPFXW (CRYPTEXT.@)
+ */
+HRESULT WINAPI CryptExtAddPFXW(LPCWSTR filename)
+{
+    FIXME("stub: %s\n", debugstr_w(filename));
+    return E_NOTIMPL;
+}

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-wine/wine.git



More information about the pkg-wine-party mailing list