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
996028be
Commit
996028be
authored
Nov 06, 2001
by
Francois Gouget
Committed by
Alexandre Julliard
Nov 06, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename SIC_CompareEntrys to SIC_CompareEntries, and make it static.
parent
1c53a7fc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
iconcache.c
dlls/shell32/iconcache.c
+3
-3
No files found.
dlls/shell32/iconcache.c
View file @
996028be
...
...
@@ -40,12 +40,12 @@ static HDPA sic_hdpa = 0;
static
CRITICAL_SECTION
SHELL32_SicCS
=
CRITICAL_SECTION_INIT
(
"SHELL32_SicCS"
);
/*****************************************************************************
* SIC_CompareEntr
ys [called by comctl32.dll]
* SIC_CompareEntr
ies
*
* NOTES
* Callback for DPA_Search
*/
INT
CALLBACK
SIC_CompareEntry
s
(
LPVOID
p1
,
LPVOID
p2
,
LPARAM
lparam
)
static
INT
CALLBACK
SIC_CompareEntrie
s
(
LPVOID
p1
,
LPVOID
p2
,
LPARAM
lparam
)
{
TRACE
(
"%p %p
\n
"
,
p1
,
p2
);
if
(((
LPSIC_ENTRY
)
p1
)
->
dwSourceIndex
!=
((
LPSIC_ENTRY
)
p2
)
->
dwSourceIndex
)
/* first the faster one*/
...
...
@@ -144,7 +144,7 @@ INT SIC_GetIconIndex (LPCSTR sSourceFile, INT dwSourceIndex )
if
(
NULL
!=
pDPA_GetPtr
(
sic_hdpa
,
0
))
{
index
=
pDPA_Search
(
sic_hdpa
,
&
sice
,
-
1L
,
SIC_CompareEntr
y
s
,
0
,
0
);
index
=
pDPA_Search
(
sic_hdpa
,
&
sice
,
-
1L
,
SIC_CompareEntr
ie
s
,
0
,
0
);
}
if
(
INVALID_INDEX
==
index
)
...
...
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