Module: wine Branch: master Commit: 442960818901e63066c47fd62609f63a9f1111f5 URL: https://source.winehq.org/git/wine.git/?a=commit;h=442960818901e63066c47fd62...
Author: Austin English austinenglish@gmail.com Date: Tue Jul 9 01:07:21 2019 -0500
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
---
dlls/shell32/shell32.spec | 1 + dlls/shell32/shlfileop.c | 10 ++++++++++ 2 files changed, 11 insertions(+)
diff --git a/dlls/shell32/shell32.spec b/dlls/shell32/shell32.spec index 7ed7bb5..5331fff 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 1515ad3..b941db3 100644 --- a/dlls/shell32/shlfileop.c +++ b/dlls/shell32/shlfileop.c @@ -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; +}