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
bd63880c
Commit
bd63880c
authored
Sep 04, 1999
by
Uwe Bonnes
Committed by
Alexandre Julliard
Sep 04, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented StrCmpNIA like the other StrCmpXX functions.
parent
7c7f155b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
comctl32.spec
dlls/comctl32/comctl32.spec
+1
-1
comctl32undoc.c
dlls/comctl32/comctl32undoc.c
+8
-0
No files found.
dlls/comctl32/comctl32.spec
View file @
bd63880c
...
...
@@ -140,7 +140,7 @@ init COMCTL32_LibMain
350 stdcall StrChrA(str str) COMCTL32_StrChrA
351 stdcall StrRChrA(str str long) COMCTL32_StrRChrA
352 stdcall StrCmpNA(str str long) COMCTL32_StrCmpNA
353 st
ub
StrCmpNIA
353 st
dcall StrCmpNIA(str str long) COMCTL32_
StrCmpNIA
354 stdcall StrStrA(str str) COMCTL32_StrStrA
355 stdcall StrStrIA(str str) COMCTL32_StrStrIA
356 stdcall StrCSpnA(str str) COMCTL32_StrCSpnA
...
...
dlls/comctl32/comctl32undoc.c
View file @
bd63880c
...
...
@@ -1997,6 +1997,14 @@ INT WINAPI COMCTL32_StrCmpNA( LPCSTR lpStr1, LPCSTR lpStr2, int nChar) {
}
/**************************************************************************
* StrCmpNA [COMCTL32.352]
*
*/
INT
WINAPI
COMCTL32_StrCmpNIA
(
LPCSTR
lpStr1
,
LPCSTR
lpStr2
,
int
nChar
)
{
return
strncasecmp
(
lpStr1
,
lpStr2
,
nChar
);
}
/**************************************************************************
* StrCmpNW [COMCTL32.360]
*
*/
...
...
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