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
a14b7df8
Commit
a14b7df8
authored
Jan 27, 2012
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jan 27, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Pass the object instead of the iface to an internal helper.
parent
594002d0
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
folders.c
dlls/shell32/folders.c
+3
-5
No files found.
dlls/shell32/folders.c
View file @
a14b7df8
...
...
@@ -161,10 +161,9 @@ static ULONG WINAPI IExtractIconW_fnRelease(IExtractIconW * iface)
return
refCount
;
}
static
HRESULT
getIconLocationForFolder
(
IExtractIconW
*
iface
,
UINT
uFlags
,
LPWSTR
szIconFile
,
UINT
cchMax
,
int
*
piIndex
,
UINT
*
pwFlags
)
static
HRESULT
getIconLocationForFolder
(
IExtractIconW
Impl
*
This
,
UINT
uFlags
,
LPWSTR
szIconFile
,
UINT
cchMax
,
int
*
piIndex
,
UINT
*
pwFlags
)
{
IExtractIconWImpl
*
This
=
(
IExtractIconWImpl
*
)
iface
;
int
icon_idx
;
WCHAR
wszPath
[
MAX_PATH
];
WCHAR
wszCLSIDValue
[
CHARS_IN_GUID
];
...
...
@@ -318,8 +317,7 @@ static HRESULT WINAPI IExtractIconW_fnGetIconLocation(
}
else
if
(
_ILIsFolder
(
pSimplePidl
))
{
getIconLocationForFolder
(
iface
,
uFlags
,
szIconFile
,
cchMax
,
piIndex
,
pwFlags
);
getIconLocationForFolder
(
This
,
uFlags
,
szIconFile
,
cchMax
,
piIndex
,
pwFlags
);
}
else
{
...
...
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