Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=47411 Signed-off-by: Austin English austinenglish@gmail.com --- dlls/shell32/shell32.spec | 1 + dlls/shell32/shlfileop.c | 11 +++++++++++ 2 files changed, 12 insertions(+)
diff --git a/dlls/shell32/shell32.spec b/dlls/shell32/shell32.spec index 7ed7bb531d..5331ffff94 100644 --- a/dlls/shell32/shell32.spec +++ b/dlls/shell32/shell32.spec @@ -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) diff --git a/dlls/shell32/shlfileop.c b/dlls/shell32/shlfileop.c index 1515ad3891..07f6111062 100644 --- a/dlls/shell32/shlfileop.c +++ b/dlls/shell32/shlfileop.c @@ -1799,3 +1799,14 @@ 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; +} +