shell32: Add a stub for SHOpenFolderAndSelectItems.

This commit is contained in:
Austin English 2011-05-15 13:13:21 -05:00 committed by Alexandre Julliard
parent 2bfa358d3d
commit 3174ea94c1
2 changed files with 13 additions and 0 deletions

View file

@ -392,6 +392,7 @@
@ stdcall SHIsFileAvailableOffline(wstr ptr)
@ stdcall SHLoadInProc(long)
@ stdcall SHLoadNonloadedIconOverlayIdentifiers()
@ stdcall SHOpenFolderAndSelectItems(ptr long ptr long)
@ stdcall SHParseDisplayName(wstr ptr ptr long ptr)
@ stdcall SHPathPrepareForWriteA(long ptr str long)
@ stdcall SHPathPrepareForWriteW(long ptr wstr long)

View file

@ -580,3 +580,15 @@ HRESULT WINAPI SHCreateLinks( HWND hWnd, LPCSTR lpszDir, LPDATAOBJECT lpDataObje
FIXME("%p %s %p %08x %p\n",hWnd,lpszDir,lpDataObject,uFlags,lppidlLinks);
return E_NOTIMPL;
}
/***********************************************************************
* SHOpenFolderAndSelectItems
*
* Added in XP.
*/
HRESULT WINAPI SHOpenFolderAndSelectItems( PCIDLIST_ABSOLUTE pidlFolder, UINT cidl,
PCUITEMID_CHILD_ARRAY *apidl, DWORD flags )
{
FIXME("%p %u %p 0x%x: stub\n", pidlFolder, cidl, apidl, flags);
return E_NOTIMPL;
}