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
c66d94bf
Commit
c66d94bf
authored
Jun 25, 2013
by
Piotr Caban
Committed by
Alexandre Julliard
Jun 25, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Added _wcsicmp_l implementation.
parent
031c4e2d
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
13 additions
and
5 deletions
+13
-5
msvcr100.spec
dlls/msvcr100/msvcr100.spec
+1
-1
msvcr110.spec
dlls/msvcr110/msvcr110.spec
+1
-1
msvcr80.spec
dlls/msvcr80/msvcr80.spec
+1
-1
msvcr90.spec
dlls/msvcr90/msvcr90.spec
+1
-1
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-1
wcs.c
dlls/msvcrt/wcs.c
+8
-0
No files found.
dlls/msvcr100/msvcr100.spec
View file @
c66d94bf
...
...
@@ -1484,7 +1484,7 @@
@ cdecl _wcserror_s(ptr long long) msvcrt._wcserror_s
@ stub _wcsftime_l
@ cdecl _wcsicmp(wstr wstr) msvcrt._wcsicmp
@
stub
_wcsicmp_l
@
cdecl _wcsicmp_l(wstr wstr ptr) msvcrt.
_wcsicmp_l
@ cdecl _wcsicoll(wstr wstr) msvcrt._wcsicoll
@ cdecl _wcsicoll_l(wstr wstr ptr) msvcrt._wcsicoll_l
@ cdecl _wcslwr(wstr) msvcrt._wcslwr
...
...
dlls/msvcr110/msvcr110.spec
View file @
c66d94bf
...
...
@@ -1847,7 +1847,7 @@
@ cdecl _wcserror_s(ptr long long) msvcrt._wcserror_s
@ stub _wcsftime_l
@ cdecl _wcsicmp(wstr wstr) msvcrt._wcsicmp
@
stub
_wcsicmp_l
@
cdecl _wcsicmp_l(wstr wstr ptr) msvcrt.
_wcsicmp_l
@ cdecl _wcsicoll(wstr wstr) msvcrt._wcsicoll
@ cdecl _wcsicoll_l(wstr wstr ptr) msvcrt._wcsicoll_l
@ cdecl _wcslwr(wstr) msvcrt._wcslwr
...
...
dlls/msvcr80/msvcr80.spec
View file @
c66d94bf
...
...
@@ -1162,7 +1162,7 @@
@ cdecl _wcserror_s(ptr long long) msvcrt._wcserror_s
@ stub _wcsftime_l
@ cdecl _wcsicmp(wstr wstr) msvcrt._wcsicmp
@
stub
_wcsicmp_l
@
cdecl _wcsicmp_l(wstr wstr ptr) msvcrt.
_wcsicmp_l
@ cdecl _wcsicoll(wstr wstr) msvcrt._wcsicoll
@ cdecl _wcsicoll_l(wstr wstr ptr) msvcrt._wcsicoll_l
@ cdecl _wcslwr(wstr) msvcrt._wcslwr
...
...
dlls/msvcr90/msvcr90.spec
View file @
c66d94bf
...
...
@@ -1138,7 +1138,7 @@
@ cdecl _wcserror_s(ptr long long) msvcrt._wcserror_s
@ stub _wcsftime_l
@ cdecl _wcsicmp(wstr wstr) msvcrt._wcsicmp
@
stub
_wcsicmp_l
@
cdecl _wcsicmp_l(wstr wstr ptr) msvcrt.
_wcsicmp_l
@ cdecl _wcsicoll(wstr wstr) msvcrt._wcsicoll
@ cdecl _wcsicoll_l(wstr wstr ptr) msvcrt._wcsicoll_l
@ cdecl _wcslwr(wstr) msvcrt._wcslwr
...
...
dlls/msvcrt/msvcrt.spec
View file @
c66d94bf
...
...
@@ -1102,7 +1102,7 @@
@ cdecl _wcserror_s(ptr long long)
# stub _wcsftime_l(ptr long wstr ptr ptr)
@ cdecl _wcsicmp(wstr wstr) MSVCRT__wcsicmp
# stub _wcsicmp_l(wstr wstr ptr)
@ cdecl _wcsicmp_l(wstr wstr ptr) MSVCRT__wcsicmp_l
@ cdecl _wcsicoll(wstr wstr) MSVCRT__wcsicoll
@ cdecl _wcsicoll_l(wstr wstr ptr) MSVCRT__wcsicoll_l
@ cdecl _wcslwr(wstr) ntdll._wcslwr
...
...
dlls/msvcrt/wcs.c
View file @
c66d94bf
...
...
@@ -69,6 +69,14 @@ MSVCRT_wchar_t* CDECL MSVCRT__wcsdup( const MSVCRT_wchar_t* str )
return
ret
;
}
INT
CDECL
MSVCRT__wcsicmp_l
(
const
MSVCRT_wchar_t
*
str1
,
const
MSVCRT_wchar_t
*
str2
,
MSVCRT__locale_t
locale
)
{
if
(
!
MSVCRT_CHECK_PMT
(
str1
!=
NULL
)
||
!
MSVCRT_CHECK_PMT
(
str2
!=
NULL
))
return
MSVCRT__NLSCMPERROR
;
return
strcmpiW
(
str1
,
str2
);
}
/*********************************************************************
* _wcsicmp (MSVCRT.@)
*/
...
...
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