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
e0338be2
Commit
e0338be2
authored
Jun 26, 2008
by
Francois Gouget
Committed by
Alexandre Julliard
Jun 26, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shlwapi: Don't use Unix functions for case sensitive string comparisons.
parent
2fef93a8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
string.c
dlls/shlwapi/string.c
+3
-3
No files found.
dlls/shlwapi/string.c
View file @
e0338be2
...
...
@@ -511,7 +511,7 @@ LPWSTR WINAPI StrCpyNW(LPWSTR lpszStr, LPCWSTR lpszSrc, int iLen)
* Internal implementation of StrStrA/StrStrIA
*/
static
LPSTR
SHLWAPI_StrStrHelperA
(
LPCSTR
lpszStr
,
LPCSTR
lpszSearch
,
int
(
*
pStrCmpFn
)(
LPCSTR
,
LPCSTR
,
size_t
))
INT
(
WINAPI
*
pStrCmpFn
)(
LPCSTR
,
LPCSTR
,
INT
))
{
size_t
iLen
;
...
...
@@ -545,7 +545,7 @@ LPSTR WINAPI StrStrA(LPCSTR lpszStr, LPCSTR lpszSearch)
{
TRACE
(
"(%s,%s)
\n
"
,
debugstr_a
(
lpszStr
),
debugstr_a
(
lpszSearch
));
return
SHLWAPI_StrStrHelperA
(
lpszStr
,
lpszSearch
,
strncmp
);
return
SHLWAPI_StrStrHelperA
(
lpszStr
,
lpszSearch
,
StrCmpNA
);
}
/*************************************************************************
...
...
@@ -650,7 +650,7 @@ LPSTR WINAPI StrStrIA(LPCSTR lpszStr, LPCSTR lpszSearch)
{
TRACE
(
"(%s,%s)
\n
"
,
debugstr_a
(
lpszStr
),
debugstr_a
(
lpszSearch
));
return
SHLWAPI_StrStrHelperA
(
lpszStr
,
lpszSearch
,
strncasecmp
);
return
SHLWAPI_StrStrHelperA
(
lpszStr
,
lpszSearch
,
StrCmpNIA
);
}
/*************************************************************************
...
...
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