Commit bb2600b6 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

shell32: Add stub for SHGetPropertyStoreFromParsingName.

parent e5a476c6
......@@ -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)
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment