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
0998dfe0
Commit
0998dfe0
authored
Oct 18, 2022
by
Bartosz Kosiorek
Committed by
Alexandre Julliard
Oct 19, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Add _mbctolower_l partial implementation.
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=45273
parent
f3d90dbc
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
19 additions
and
11 deletions
+19
-11
msvcr100.spec
dlls/msvcr100/msvcr100.spec
+1
-1
msvcr110.spec
dlls/msvcr110/msvcr110.spec
+1
-1
msvcr120.spec
dlls/msvcr120/msvcr120.spec
+1
-1
msvcr80.spec
dlls/msvcr80/msvcr80.spec
+1
-1
msvcr90.spec
dlls/msvcr90/msvcr90.spec
+1
-1
mbcs.c
dlls/msvcrt/mbcs.c
+12
-4
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-1
ucrtbase.spec
dlls/ucrtbase/ucrtbase.spec
+1
-1
No files found.
dlls/msvcr100/msvcr100.spec
View file @
0998dfe0
...
...
@@ -1088,7 +1088,7 @@
@ cdecl _mbctokata(long)
@ stub _mbctokata_l
@ cdecl _mbctolower(long)
@
stub _mbctolower_l
@
cdecl _mbctolower_l(long ptr)
@ cdecl _mbctombb(long)
@ stub _mbctombb_l
@ cdecl _mbctoupper(long)
...
...
dlls/msvcr110/msvcr110.spec
View file @
0998dfe0
...
...
@@ -1445,7 +1445,7 @@
@ cdecl _mbctokata(long)
@ stub _mbctokata_l
@ cdecl _mbctolower(long)
@
stub _mbctolower_l
@
cdecl _mbctolower_l(long ptr)
@ cdecl _mbctombb(long)
@ stub _mbctombb_l
@ cdecl _mbctoupper(long)
...
...
dlls/msvcr120/msvcr120.spec
View file @
0998dfe0
...
...
@@ -1456,7 +1456,7 @@
@ cdecl _mbctokata(long)
@ stub _mbctokata_l
@ cdecl _mbctolower(long)
@
stub _mbctolower_l
@
cdecl _mbctolower_l(long ptr)
@ cdecl _mbctombb(long)
@ stub _mbctombb_l
@ cdecl _mbctoupper(long)
...
...
dlls/msvcr80/msvcr80.spec
View file @
0998dfe0
...
...
@@ -760,7 +760,7 @@
@ cdecl _mbctokata(long)
@ stub _mbctokata_l
@ cdecl _mbctolower(long)
@
stub _mbctolower_l
@
cdecl _mbctolower_l(long ptr)
@ cdecl _mbctombb(long)
@ stub _mbctombb_l
@ cdecl _mbctoupper(long)
...
...
dlls/msvcr90/msvcr90.spec
View file @
0998dfe0
...
...
@@ -738,7 +738,7 @@
@ cdecl _mbctokata(long)
@ stub _mbctokata_l
@ cdecl _mbctolower(long)
@
stub _mbctolower_l
@
cdecl _mbctolower_l(long ptr)
@ cdecl _mbctombb(long)
@ stub _mbctombb_l
@ cdecl _mbctoupper(long)
...
...
dlls/msvcrt/mbcs.c
View file @
0998dfe0
...
...
@@ -447,16 +447,24 @@ unsigned int CDECL _mbsnextc(const unsigned char* str)
}
/*********************************************************************
* _mbctolower(MSVCRT.@)
* _mbctolower
_l
(MSVCRT.@)
*/
unsigned
int
CDECL
_mbctolower
(
unsigned
int
c
)
unsigned
int
CDECL
_mbctolower
_l
(
unsigned
int
c
,
_locale_t
locale
)
{
if
(
_ismbblead
(
c
))
if
(
_ismbblead
_l
(
c
,
locale
))
{
FIXME
(
"Handle MBC chars
\n
"
);
return
c
;
}
return
_tolower_l
(
c
,
NULL
);
/* ASCII CP or SB char */
return
_tolower_l
(
c
,
locale
);
/* ASCII CP or SB char */
}
/*********************************************************************
* _mbctolower(MSVCRT.@)
*/
unsigned
int
CDECL
_mbctolower
(
unsigned
int
c
)
{
return
_mbctolower_l
(
c
,
NULL
);
}
/*********************************************************************
...
...
dlls/msvcrt/msvcrt.spec
View file @
0998dfe0
...
...
@@ -705,7 +705,7 @@
@ cdecl _mbctokata(long)
# stub _mbctokata_l(long ptr)
@ cdecl _mbctolower(long)
# stub
_mbctolower_l(long ptr)
@ cdecl
_mbctolower_l(long ptr)
@ cdecl _mbctombb(long)
# stub _mbctombb_l(long ptr)
@ cdecl _mbctoupper(long)
...
...
dlls/ucrtbase/ucrtbase.spec
View file @
0998dfe0
...
...
@@ -603,7 +603,7 @@
@ cdecl _mbctokata(long)
@ stub _mbctokata_l
@ cdecl _mbctolower(long)
@
stub _mbctolower_l
@
cdecl _mbctolower_l(long ptr)
@ cdecl _mbctombb(long)
@ stub _mbctombb_l
@ cdecl _mbctoupper(long)
...
...
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