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
23906816
Commit
23906816
authored
Dec 03, 2010
by
Mike Gibson
Committed by
Alexandre Julliard
Dec 05, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Implement wcsnicoll.
parent
12c218c8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
16 additions
and
5 deletions
+16
-5
msvcr100.spec
dlls/msvcr100/msvcr100.spec
+1
-1
msvcr70.spec
dlls/msvcr70/msvcr70.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
+9
-0
string.h
include/msvcrt/string.h
+1
-0
wchar.h
include/msvcrt/wchar.h
+1
-0
No files found.
dlls/msvcr100/msvcr100.spec
View file @
23906816
...
...
@@ -1299,7 +1299,7 @@
@ stub _wcsncoll_l
@ cdecl _wcsnicmp(wstr wstr long) msvcrt._wcsnicmp
@ stub _wcsnicmp_l
@
stub
_wcsnicoll
@
cdecl _wcsnicoll(wstr wstr long) msvcrt.
_wcsnicoll
@ stub _wcsnicoll_l
@ cdecl _wcsnset(wstr long long) msvcrt._wcsnset
@ stub _wcsnset_s
...
...
dlls/msvcr70/msvcr70.spec
View file @
23906816
...
...
@@ -601,7 +601,7 @@
@ cdecl _wcslwr(wstr) msvcrt._wcslwr
@ stub _wcsncoll
@ cdecl _wcsnicmp(wstr wstr long) msvcrt._wcsnicmp
@
stub
_wcsnicoll
@
cdecl _wcsnicoll(wstr wstr long) msvcrt.
_wcsnicoll
@ cdecl _wcsnset(wstr long long) msvcrt._wcsnset
@ cdecl _wcsrev(wstr) msvcrt._wcsrev
@ cdecl _wcsset(wstr long) msvcrt._wcsset
...
...
dlls/msvcr80/msvcr80.spec
View file @
23906816
...
...
@@ -1152,7 +1152,7 @@
@ stub _wcsncoll_l
@ cdecl _wcsnicmp(wstr wstr long) msvcrt._wcsnicmp
@ stub _wcsnicmp_l
@
stub
_wcsnicoll
@
cdecl _wcsnicoll(wstr wstr long) msvcrt.
_wcsnicoll
@ stub _wcsnicoll_l
@ cdecl _wcsnset(wstr long long) msvcrt._wcsnset
@ stub _wcsnset_s
...
...
dlls/msvcr90/msvcr90.spec
View file @
23906816
...
...
@@ -1139,7 +1139,7 @@
@ stub _wcsncoll_l
@ cdecl _wcsnicmp(wstr wstr long) msvcrt._wcsnicmp
@ stub _wcsnicmp_l
@
stub
_wcsnicoll
@
cdecl _wcsnicoll(wstr wstr long) msvcrt.
_wcsnicoll
@ stub _wcsnicoll_l
@ cdecl _wcsnset(wstr long long) msvcrt._wcsnset
@ stub _wcsnset_s
...
...
dlls/msvcrt/msvcrt.spec
View file @
23906816
...
...
@@ -1073,7 +1073,7 @@
# stub _wcsncoll_l
@ cdecl _wcsnicmp(wstr wstr long) ntdll._wcsnicmp
# stub _wcsnicmp_l
@
stub _wcsnicoll #
(wstr wstr long)
@
cdecl _wcsnicoll
(wstr wstr long)
# stub _wcsnicoll_l
@ cdecl _wcsnset(wstr long long) MSVCRT__wcsnset
# stub _wcsnset_s
...
...
dlls/msvcrt/wcs.c
View file @
23906816
...
...
@@ -58,6 +58,15 @@ INT CDECL _wcsicoll( const MSVCRT_wchar_t* str1, const MSVCRT_wchar_t* str2 )
}
/*********************************************************************
* _wcsnicoll (MSVCRT.@)
*/
INT
CDECL
_wcsnicoll
(
const
MSVCRT_wchar_t
*
str1
,
const
MSVCRT_wchar_t
*
str2
,
MSVCRT_size_t
count
)
{
/* FIXME: handle collates */
return
strncmpiW
(
str1
,
str2
,
count
);
}
/*********************************************************************
* _wcsnset (MSVCRT.@)
*/
MSVCRT_wchar_t
*
CDECL
MSVCRT__wcsnset
(
MSVCRT_wchar_t
*
str
,
MSVCRT_wchar_t
c
,
MSVCRT_size_t
n
)
...
...
include/msvcrt/string.h
View file @
23906816
...
...
@@ -88,6 +88,7 @@ int __cdecl _wcsicmp(const wchar_t*,const wchar_t*);
int
__cdecl
_wcsicoll
(
const
wchar_t
*
,
const
wchar_t
*
);
wchar_t
*
__cdecl
_wcslwr
(
wchar_t
*
);
int
__cdecl
_wcsnicmp
(
const
wchar_t
*
,
const
wchar_t
*
,
size_t
);
int
__cdecl
_wcsnicoll
(
const
wchar_t
*
,
const
wchar_t
*
,
size_t
);
wchar_t
*
__cdecl
_wcsnset
(
wchar_t
*
,
wchar_t
,
size_t
);
wchar_t
*
__cdecl
_wcsrev
(
wchar_t
*
);
wchar_t
*
__cdecl
_wcsset
(
wchar_t
*
,
wchar_t
);
...
...
include/msvcrt/wchar.h
View file @
23906816
...
...
@@ -362,6 +362,7 @@ int __cdecl _wcsicmp(const wchar_t*,const wchar_t*);
int
__cdecl
_wcsicoll
(
const
wchar_t
*
,
const
wchar_t
*
);
wchar_t
*
__cdecl
_wcslwr
(
wchar_t
*
);
int
__cdecl
_wcsnicmp
(
const
wchar_t
*
,
const
wchar_t
*
,
size_t
);
int
__cdecl
_wcsnicoll
(
const
wchar_t
*
,
const
wchar_t
*
,
size_t
);
wchar_t
*
__cdecl
_wcsnset
(
wchar_t
*
,
wchar_t
,
size_t
);
wchar_t
*
__cdecl
_wcsrev
(
wchar_t
*
);
wchar_t
*
__cdecl
_wcsset
(
wchar_t
*
,
wchar_t
);
...
...
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