shell32: Add stub for SHGetPropertyStoreFromParsingName.
This commit is contained in:
parent
e5a476c66d
commit
bb2600b687
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue