From bb2600b68767fc59d4cd4b6a895fb5f57e819dd0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20Hentschel?= Date: Tue, 20 Jul 2010 19:40:40 +0200 Subject: [PATCH] shell32: Add stub for SHGetPropertyStoreFromParsingName. --- dlls/shell32/shell32.spec | 1 + dlls/shell32/shell32_main.c | 10 ++++++++++ 2 files changed, 11 insertions(+) diff --git a/dlls/shell32/shell32.spec b/dlls/shell32/shell32.spec index 7f1c5b6bda0..09743e84860 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 75b9c7e60ef..f906a2454e6 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 -- 2.11.4.GIT