Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
072951e2
Commit
072951e2
authored
Mar 04, 2010
by
Nikolay Sivov
Committed by
Alexandre Julliard
Mar 05, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Stub IShellView2::SelectAndPositionItem() over IFolderView::SelectAndPositionItems().
parent
04e527b3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
3 deletions
+19
-3
shlview.c
dlls/shell32/shlview.c
+19
-3
No files found.
dlls/shell32/shlview.c
View file @
072951e2
...
...
@@ -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
=
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment