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
36ea6f02
Commit
36ea6f02
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 _mbctoupper_l partial implementation.
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=45273
parent
0998dfe0
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 @
36ea6f02
...
...
@@ -1092,7 +1092,7 @@
@ cdecl _mbctombb(long)
@ stub _mbctombb_l
@ cdecl _mbctoupper(long)
@
stub _mbctoupper_l
@
cdecl _mbctoupper_l(long ptr)
@ extern _mbctype MSVCRT_mbctype
@ stub _mblen_l
@ cdecl _mbsbtype(str long)
...
...
dlls/msvcr110/msvcr110.spec
View file @
36ea6f02
...
...
@@ -1449,7 +1449,7 @@
@ cdecl _mbctombb(long)
@ stub _mbctombb_l
@ cdecl _mbctoupper(long)
@
stub _mbctoupper_l
@
cdecl _mbctoupper_l(long ptr)
@ extern _mbctype MSVCRT_mbctype
@ stub _mblen_l
@ cdecl _mbsbtype(str long)
...
...
dlls/msvcr120/msvcr120.spec
View file @
36ea6f02
...
...
@@ -1460,7 +1460,7 @@
@ cdecl _mbctombb(long)
@ stub _mbctombb_l
@ cdecl _mbctoupper(long)
@
stub _mbctoupper_l
@
cdecl _mbctoupper_l(long ptr)
@ extern _mbctype MSVCRT_mbctype
@ stub _mblen_l
@ cdecl _mbsbtype(str long)
...
...
dlls/msvcr80/msvcr80.spec
View file @
36ea6f02
...
...
@@ -764,7 +764,7 @@
@ cdecl _mbctombb(long)
@ stub _mbctombb_l
@ cdecl _mbctoupper(long)
@
stub _mbctoupper_l
@
cdecl _mbctoupper_l(long ptr)
@ extern _mbctype MSVCRT_mbctype
@ stub _mblen_l
@ cdecl _mbsbtype(str long)
...
...
dlls/msvcr90/msvcr90.spec
View file @
36ea6f02
...
...
@@ -742,7 +742,7 @@
@ cdecl _mbctombb(long)
@ stub _mbctombb_l
@ cdecl _mbctoupper(long)
@
stub _mbctoupper_l
@
cdecl _mbctoupper_l(long ptr)
@ extern _mbctype MSVCRT_mbctype
@ stub _mblen_l
@ cdecl _mbsbtype(str long)
...
...
dlls/msvcrt/mbcs.c
View file @
36ea6f02
...
...
@@ -468,16 +468,24 @@ unsigned int CDECL _mbctolower(unsigned int c)
}
/*********************************************************************
* _mbctoupper(MSVCRT.@)
* _mbctoupper
_l
(MSVCRT.@)
*/
unsigned
int
CDECL
_mbctoupper
(
unsigned
int
c
)
unsigned
int
CDECL
_mbctoupper
_l
(
unsigned
int
c
,
_locale_t
locale
)
{
if
(
_ismbblead
(
c
))
if
(
_ismbblead
_l
(
c
,
locale
))
{
FIXME
(
"Handle MBC chars
\n
"
);
return
c
;
}
return
_toupper_l
(
c
,
NULL
);
/* ASCII CP or SB char */
return
_toupper_l
(
c
,
locale
);
/* ASCII CP or SB char */
}
/*********************************************************************
* _mbctoupper(MSVCRT.@)
*/
unsigned
int
CDECL
_mbctoupper
(
unsigned
int
c
)
{
return
_mbctoupper_l
(
c
,
NULL
);
}
/*********************************************************************
...
...
dlls/msvcrt/msvcrt.spec
View file @
36ea6f02
...
...
@@ -709,7 +709,7 @@
@ cdecl _mbctombb(long)
# stub _mbctombb_l(long ptr)
@ cdecl _mbctoupper(long)
# stub
_mbctoupper_l(long ptr)
@ cdecl
_mbctoupper_l(long ptr)
@ extern _mbctype MSVCRT_mbctype
# stub _mblen_l(str long ptr)
@ cdecl _mbsbtype(str long)
...
...
dlls/ucrtbase/ucrtbase.spec
View file @
36ea6f02
...
...
@@ -607,7 +607,7 @@
@ cdecl _mbctombb(long)
@ stub _mbctombb_l
@ cdecl _mbctoupper(long)
@
stub _mbctoupper_l
@
cdecl _mbctoupper_l(long ptr)
@ stub _mblen_l
@ cdecl _mbsbtype(str long)
@ stub _mbsbtype_l
...
...
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