Commit 44296081 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

shell32: Add SHMultiFileProperties stub.

parent b5b1f11f
......@@ -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)
......
......@@ -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;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment