Juan Lang : crypt32: Add stub for PFXImportCertStore.

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


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

Author: Juan Lang <juan.lang at gmail.com>
Date:   Tue Jan 27 09:00:25 2009 -0800

crypt32: Add stub for PFXImportCertStore.

---

 dlls/crypt32/crypt32.spec |    2 +-
 dlls/crypt32/decode.c     |    7 +++++++
 2 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/dlls/crypt32/crypt32.spec b/dlls/crypt32/crypt32.spec
index 3f5db87..ea2b6fa 100644
--- a/dlls/crypt32/crypt32.spec
+++ b/dlls/crypt32/crypt32.spec
@@ -218,7 +218,7 @@
 @ stub I_CryptUninstallOssGlobal
 @ stdcall PFXExportCertStore(ptr ptr ptr long)
 @ stdcall PFXExportCertStoreEx(ptr ptr ptr ptr long)
-@ stub PFXImportCertStore
+@ stdcall PFXImportCertStore(ptr ptr long)
 @ stdcall PFXIsPFXBlob(ptr)
 @ stub RegCreateHKCUKeyExU
 @ stub RegCreateKeyExU
diff --git a/dlls/crypt32/decode.c b/dlls/crypt32/decode.c
index bc0ee17..f353131 100644
--- a/dlls/crypt32/decode.c
+++ b/dlls/crypt32/decode.c
@@ -5546,3 +5546,10 @@ BOOL WINAPI PFXIsPFXBlob(CRYPT_DATA_BLOB *pPFX)
         ret = FALSE;
     return ret;
 }
+
+HCERTSTORE WINAPI PFXImportCertStore(CRYPT_DATA_BLOB *pPFX, LPCWSTR szPassword,
+ DWORD dwFlags)
+{
+    FIXME("(%p, %p, %08x): stub\n", pPFX, szPassword, dwFlags);
+    return NULL;
+}




More information about the wine-cvs mailing list