André Hentschel : shell32: Add stub for SHGetPropertyStoreFromParsingName.

Alexandre Julliard julliard at winehq.org
Wed Jul 21 10:54:49 CDT 2010


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

Author: André Hentschel <nerv at dawncrow.de>
Date:   Tue Jul 20 19:40:40 2010 +0200

shell32: Add stub for SHGetPropertyStoreFromParsingName.

---

 dlls/shell32/shell32.spec   |    1 +
 dlls/shell32/shell32_main.c |   10 ++++++++++
 2 files changed, 11 insertions(+), 0 deletions(-)

diff --git a/dlls/shell32/shell32.spec b/dlls/shell32/shell32.spec
index 7f1c5b6..09743e8 100644
--- a/dlls/shell32/shell32.spec
+++ b/dlls/shell32/shell32.spec
@@ -364,6 +364,7 @@
 @ stdcall SHGetPathFromIDList(ptr ptr) SHGetPathFromIDListA
 @ stdcall SHGetPathFromIDListA(ptr ptr)
 @ stdcall SHGetPathFromIDListW(ptr ptr)
+@ stdcall SHGetPropertyStoreFromParsingName(wstr ptr long ptr ptr)
 @ stdcall SHGetSettings(ptr long)
 @ stdcall SHGetSpecialFolderLocation(long long ptr)
 @ stdcall SHGetSpecialFolderPathA(long ptr long long)
diff --git a/dlls/shell32/shell32_main.c b/dlls/shell32/shell32_main.c
index 75b9c7e..f906a24 100644
--- a/dlls/shell32/shell32_main.c
+++ b/dlls/shell32/shell32_main.c
@@ -38,6 +38,7 @@
 #include "wingdi.h"
 #include "shlobj.h"
 #include "shlwapi.h"
+#include "propsys.h"
 
 #include "undocshell.h"
 #include "pidl.h"
@@ -854,6 +855,15 @@ VOID WINAPI Printers_UnregisterWindow(HANDLE hClassPidl, HWND hwnd)
     FIXME("(%p, %p) stub!\n", hClassPidl, hwnd);
 } 
 
+/*************************************************************************
+ * SHGetPropertyStoreFromParsingName [SHELL32.@]
+ */
+HRESULT SHGetPropertyStoreFromParsingName(PCWSTR pszPath, IBindCtx *pbc, GETPROPERTYSTOREFLAGS flags, REFIID riid, void **ppv)
+{
+    FIXME("(%s %p %u %p %p) stub!\n", debugstr_w(pszPath), pbc, flags, riid, ppv);
+    return E_NOTIMPL;
+}
+
 /*************************************************************************/
 
 typedef struct




More information about the wine-cvs mailing list