Juan Lang : crypt32: Add stub for PFXExportCertStoreEx.

Alexandre Julliard julliard at winehq.org
Wed Jan 28 08:02:51 CST 2009


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

Author: Juan Lang <juan.lang at gmail.com>
Date:   Tue Jan 27 08:55:30 2009 -0800

crypt32: Add stub for PFXExportCertStoreEx.

---

 dlls/crypt32/crypt32.spec |    1 +
 dlls/crypt32/encode.c     |    8 ++++++++
 2 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/dlls/crypt32/crypt32.spec b/dlls/crypt32/crypt32.spec
index 3f9ac98..bc80b64 100644
--- a/dlls/crypt32/crypt32.spec
+++ b/dlls/crypt32/crypt32.spec
@@ -217,6 +217,7 @@
 @ stdcall I_CryptUninstallAsn1Module(long)
 @ stub I_CryptUninstallOssGlobal
 @ stub PFXExportCertStore
+@ stdcall PFXExportCertStoreEx(ptr ptr ptr ptr long)
 @ stub PFXImportCertStore
 @ stub RegCreateHKCUKeyExU
 @ stub RegCreateKeyExU
diff --git a/dlls/crypt32/encode.c b/dlls/crypt32/encode.c
index 277be83..3abc7c9 100644
--- a/dlls/crypt32/encode.c
+++ b/dlls/crypt32/encode.c
@@ -4499,6 +4499,14 @@ BOOL WINAPI CryptEncodeObjectEx(DWORD dwCertEncodingType, LPCSTR lpszStructType,
     return ret;
 }
 
+BOOL WINAPI PFXExportCertStoreEx(HCERTSTORE hStore, CRYPT_DATA_BLOB *pPFX,
+ LPCWSTR szPassword, void *pvReserved, DWORD dwFlags)
+{
+    FIXME_(crypt)("(%p, %p, %p, %p, %08x): stub\n", hStore, pPFX, szPassword,
+     pvReserved, dwFlags);
+    return FALSE;
+}
+
 BOOL WINAPI CryptExportPublicKeyInfo(HCRYPTPROV_OR_NCRYPT_KEY_HANDLE hCryptProv, DWORD dwKeySpec,
  DWORD dwCertEncodingType, PCERT_PUBLIC_KEY_INFO pInfo, DWORD *pcbInfo)
 {




More information about the wine-cvs mailing list