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>
oldstable
Austin English 2016-07-19 00:20:07 -05:00 committed by Alexandre Julliard
parent 1b26d38095
commit ebfe169c43
3 changed files with 11 additions and 0 deletions

View File

@ -390,6 +390,7 @@
@ stdcall SHGetPathFromIDList(ptr ptr) SHGetPathFromIDListA @ stdcall SHGetPathFromIDList(ptr ptr) SHGetPathFromIDListA
@ stdcall SHGetPathFromIDListA(ptr ptr) @ stdcall SHGetPathFromIDListA(ptr ptr)
@ stdcall SHGetPathFromIDListW(ptr ptr) @ stdcall SHGetPathFromIDListW(ptr ptr)
@ stdcall SHGetPropertyStoreForWindow(long ptr ptr)
@ stdcall SHGetPropertyStoreFromParsingName(wstr ptr long ptr ptr) @ stdcall SHGetPropertyStoreFromParsingName(wstr ptr long ptr ptr)
@ stdcall SHGetSettings(ptr long) @ stdcall SHGetSettings(ptr long)
@ stdcall SHGetSpecialFolderLocation(long long ptr) @ stdcall SHGetSpecialFolderLocation(long long ptr)

View File

@ -942,6 +942,15 @@ VOID WINAPI Printers_UnregisterWindow(HANDLE hClassPidl, HWND hwnd)
FIXME("(%p, %p) stub!\n", hClassPidl, 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.@] * SHGetPropertyStoreFromParsingName [SHELL32.@]
*/ */

View File

@ -660,6 +660,7 @@ HRESULT WINAPI SHEnumerateUnreadMailAccountsA(HKEY,DWORD,LPSTR,INT);
HRESULT WINAPI SHEnumerateUnreadMailAccountsW(HKEY,DWORD,LPWSTR,INT); HRESULT WINAPI SHEnumerateUnreadMailAccountsW(HKEY,DWORD,LPWSTR,INT);
#define SHEnumerateUnreadMailAccounts WINELIB_NAME_AW(SHEnumerateUnreadMailAccounts) #define SHEnumerateUnreadMailAccounts WINELIB_NAME_AW(SHEnumerateUnreadMailAccounts)
HRESULT WINAPI SHGetPropertyStoreForWindow(HWND,REFIID,void **);
#ifdef __cplusplus #ifdef __cplusplus
} /* extern "C" */ } /* extern "C" */