Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
725b069e
Commit
725b069e
authored
Sep 04, 2013
by
Nikolay Sivov
Committed by
Alexandre Julliard
Sep 04, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Fix remaining cases of implementation pointer being returned.
parent
af3a20d2
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
15 deletions
+9
-15
shfldr_desktop.c
dlls/shell32/shfldr_desktop.c
+1
-1
shfldr_mycomp.c
dlls/shell32/shfldr_mycomp.c
+1
-1
shfldr_netplaces.c
dlls/shell32/shfldr_netplaces.c
+1
-1
shfldr_printers.c
dlls/shell32/shfldr_printers.c
+1
-1
shlview.c
dlls/shell32/shlview.c
+4
-10
shlview_cmenu.c
dlls/shell32/shlview_cmenu.c
+1
-1
No files found.
dlls/shell32/shfldr_desktop.c
View file @
725b069e
...
...
@@ -112,7 +112,7 @@ static HRESULT WINAPI ISF_Desktop_fnQueryInterface(
IsEqualIID
(
riid
,
&
IID_IShellFolder
)
||
IsEqualIID
(
riid
,
&
IID_IShellFolder2
))
{
*
ppvObj
=
This
;
*
ppvObj
=
&
This
->
IShellFolder2_iface
;
}
else
if
(
IsEqualIID
(
riid
,
&
IID_IPersist
)
||
IsEqualIID
(
riid
,
&
IID_IPersistFolder
)
||
...
...
dlls/shell32/shfldr_mycomp.c
View file @
725b069e
...
...
@@ -140,7 +140,7 @@ static HRESULT WINAPI ISF_MyComputer_fnQueryInterface (IShellFolder2 *iface,
IsEqualIID
(
riid
,
&
IID_IShellFolder
)
||
IsEqualIID
(
riid
,
&
IID_IShellFolder2
))
{
*
ppvObj
=
This
;
*
ppvObj
=
&
This
->
IShellFolder2_iface
;
}
else
if
(
IsEqualIID
(
riid
,
&
IID_IPersist
)
||
IsEqualIID
(
riid
,
&
IID_IPersistFolder
)
||
...
...
dlls/shell32/shfldr_netplaces.c
View file @
725b069e
...
...
@@ -133,7 +133,7 @@ static HRESULT WINAPI ISF_NetworkPlaces_fnQueryInterface (IShellFolder2 *iface,
IsEqualIID
(
riid
,
&
IID_IShellFolder
)
||
IsEqualIID
(
riid
,
&
IID_IShellFolder2
))
{
*
ppvObj
=
This
;
*
ppvObj
=
&
This
->
IShellFolder2_iface
;
}
else
if
(
IsEqualIID
(
riid
,
&
IID_IPersist
)
||
IsEqualIID
(
riid
,
&
IID_IPersistFolder
)
||
...
...
dlls/shell32/shfldr_printers.c
View file @
725b069e
...
...
@@ -80,7 +80,7 @@ static HRESULT WINAPI IShellFolder_Printers_fnQueryInterface(IShellFolder2 *ifac
IsEqualIID
(
riid
,
&
IID_IShellFolder
)
||
IsEqualIID
(
riid
,
&
IID_IShellFolder2
))
{
*
ppvObj
=
This
;
*
ppvObj
=
&
This
->
IShellFolder2_iface
;
}
else
if
(
IsEqualIID
(
riid
,
&
IID_IPersist
)
||
IsEqualIID
(
riid
,
&
IID_IPersistFolder
)
||
...
...
dlls/shell32/shlview.c
View file @
725b069e
...
...
@@ -1751,17 +1751,11 @@ static HRESULT WINAPI IShellView_fnQueryInterface(IShellView2 *iface, REFIID rii
*
ppvObj
=
NULL
;
if
(
IsEqualIID
(
riid
,
&
IID_IUnknown
))
if
(
IsEqualIID
(
riid
,
&
IID_IUnknown
)
||
IsEqualIID
(
riid
,
&
IID_IShellView
)
||
IsEqualIID
(
riid
,
&
IID_IShellView2
))
{
*
ppvObj
=
This
;
}
else
if
(
IsEqualIID
(
riid
,
&
IID_IShellView
))
{
*
ppvObj
=
This
;
}
else
if
(
IsEqualIID
(
riid
,
&
IID_IShellView2
))
{
*
ppvObj
=
This
;
*
ppvObj
=
&
This
->
IShellView2_iface
;
}
else
if
(
IsEqualIID
(
riid
,
&
IID_IShellFolderView
))
{
...
...
dlls/shell32/shlview_cmenu.c
View file @
725b069e
...
...
@@ -78,7 +78,7 @@ static HRESULT WINAPI ContextMenu_QueryInterface(IContextMenu3 *iface, REFIID ri
IsEqualIID
(
riid
,
&
IID_IContextMenu2
)
||
IsEqualIID
(
riid
,
&
IID_IContextMenu3
))
{
*
ppvObj
=
This
;
*
ppvObj
=
&
This
->
IContextMenu3_iface
;
}
else
if
(
IsEqualIID
(
riid
,
&
IID_IShellExtInit
))
/*IShellExtInit*/
{
...
...
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