shell32: Add SHGetPropertyStoreForWindow stub.
Signed-off-by: Austin English <austinenglish@gmail.com> Signed-off-by: Andrew Eikum <aeikum@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
1b26d38095
commit
ebfe169c43
|
@ -390,6 +390,7 @@
|
|||
@ stdcall SHGetPathFromIDList(ptr ptr) SHGetPathFromIDListA
|
||||
@ stdcall SHGetPathFromIDListA(ptr ptr)
|
||||
@ stdcall SHGetPathFromIDListW(ptr ptr)
|
||||
@ stdcall SHGetPropertyStoreForWindow(long ptr ptr)
|
||||
@ stdcall SHGetPropertyStoreFromParsingName(wstr ptr long ptr ptr)
|
||||
@ stdcall SHGetSettings(ptr long)
|
||||
@ stdcall SHGetSpecialFolderLocation(long long ptr)
|
||||
|
|
|
@ -942,6 +942,15 @@ VOID WINAPI Printers_UnregisterWindow(HANDLE hClassPidl, HWND hwnd)
|
|||
FIXME("(%p, %p) stub!\n", hClassPidl, hwnd);
|
||||
}
|
||||
|
||||
/*************************************************************************
|
||||
* SHGetPropertyStoreForWindow [SHELL32.@]
|
||||
*/
|
||||
HRESULT WINAPI SHGetPropertyStoreForWindow(HWND hwnd, REFIID riid, void **ppv)
|
||||
{
|
||||
FIXME("(%p %p %p) stub!\n", hwnd, riid, ppv);
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
/*************************************************************************
|
||||
* SHGetPropertyStoreFromParsingName [SHELL32.@]
|
||||
*/
|
||||
|
|
|
@ -660,6 +660,7 @@ HRESULT WINAPI SHEnumerateUnreadMailAccountsA(HKEY,DWORD,LPSTR,INT);
|
|||
HRESULT WINAPI SHEnumerateUnreadMailAccountsW(HKEY,DWORD,LPWSTR,INT);
|
||||
#define SHEnumerateUnreadMailAccounts WINELIB_NAME_AW(SHEnumerateUnreadMailAccounts)
|
||||
|
||||
HRESULT WINAPI SHGetPropertyStoreForWindow(HWND,REFIID,void **);
|
||||
|
||||
#ifdef __cplusplus
|
||||
} /* extern "C" */
|
||||
|
|
Loading…
Reference in New Issue