shell32: Add SHMultiFileProperties stub.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=47411
Signed-off-by: Austin English <austinenglish@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Austin English 2019-07-09 01:07:21 -05:00 committed by Alexandre Julliard
parent b5b1f11f17
commit 4429608189
2 changed files with 11 additions and 0 deletions

View file

@ -409,6 +409,7 @@
@ stdcall SHIsFileAvailableOffline(wstr ptr)
@ stdcall SHLoadInProc(ptr)
@ stdcall SHLoadNonloadedIconOverlayIdentifiers()
@ stdcall SHMultiFileProperties(ptr long)
@ stdcall SHOpenFolderAndSelectItems(ptr long ptr long)
@ stdcall SHOpenWithDialog(long ptr)
@ stdcall SHParseDisplayName(wstr ptr ptr long ptr)

View file

@ -1799,3 +1799,13 @@ HRESULT WINAPI SHPathPrepareForWriteW(HWND hwnd, IUnknown *modless, LPCWSTR path
else
return HRESULT_FROM_WIN32(ERROR_DIRECTORY);
}
/*************************************************************************
* SHMultiFileProperties [SHELL32.@]
*/
HRESULT WINAPI SHMultiFileProperties(IDataObject *pdtobj, DWORD flags)
{
FIXME("stub: %p %u\n", pdtobj, flags);
return E_NOTIMPL;
}