Commit 7884c142 authored by Zhiyi Zhang's avatar Zhiyi Zhang Committed by Alexandre Julliard

shell32: Correct SHOpenFolderAndSelectItems() prototype.

The third parameter is of type PCUITEMID_CHILD_ARRAY, not PCUITEMID_CHILD_ARRAY *. Signed-off-by: 's avatarZhiyi Zhang <zzhang@codeweavers.com>
parent 616539a0
...@@ -615,8 +615,8 @@ HRESULT WINAPI SHCreateLinks( HWND hWnd, LPCSTR lpszDir, LPDATAOBJECT lpDataObje ...@@ -615,8 +615,8 @@ HRESULT WINAPI SHCreateLinks( HWND hWnd, LPCSTR lpszDir, LPDATAOBJECT lpDataObje
* *
* Added in XP. * Added in XP.
*/ */
HRESULT WINAPI SHOpenFolderAndSelectItems( PCIDLIST_ABSOLUTE pidlFolder, UINT cidl, HRESULT WINAPI SHOpenFolderAndSelectItems(PCIDLIST_ABSOLUTE pidlFolder, UINT cidl,
PCUITEMID_CHILD_ARRAY *apidl, DWORD flags ) PCUITEMID_CHILD_ARRAY apidl, DWORD flags)
{ {
FIXME("%p %u %p 0x%lx: stub\n", pidlFolder, cidl, apidl, flags); FIXME("%p %u %p 0x%lx: stub\n", pidlFolder, cidl, apidl, flags);
return E_NOTIMPL; 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