shell32: Stub IShellView2::SelectAndPositionItem() over IFolderView::SelectAndPositionItems().

This commit is contained in:
Nikolay Sivov 2010-03-04 22:36:27 +03:00 committed by Alexandre Julliard
parent 04e527b31b
commit 072951e2f8
1 changed files with 19 additions and 3 deletions

View File

@ -2111,10 +2111,26 @@ static HRESULT WINAPI IShellView2_fnHandleRename(IShellView2* iface, LPCITEMIDLI
return E_NOTIMPL;
}
static HRESULT WINAPI IShellView2_fnSelectAndPositionItem(IShellView2* iface, LPCITEMIDLIST item, UINT flags, POINT *point)
static HRESULT WINAPI IShellView2_fnSelectAndPositionItem(
IShellView2* iface,
LPCITEMIDLIST item,
UINT flags,
POINT *point)
{
FIXME("(%p)->(item %p, flags %#x, point %p) stub!\n", iface, item, flags, point);
return E_NOTIMPL;
IShellViewImpl *This = (IShellViewImpl *)iface;
IFolderView *view;
HRESULT hr;
TRACE("(%p)->(item %p, flags %#x, point %p)\n", This, item, flags, point);
hr = IShellView2_QueryInterface(iface, &IID_IFolderView, (void**)&view);
if (hr == S_OK)
{
hr = IFolderView_SelectAndPositionItems(view, 1, &item, point, flags);
IFolderView_Release(view);
}
return hr;
}
static const IShellView2Vtbl svvt =