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
95b3ff9f
Commit
95b3ff9f
authored
Jul 16, 2020
by
Piotr Caban
Committed by
Alexandre Julliard
Jul 17, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Add _ismbcupper_l implementation.
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
1ad20942
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
20 additions
and
12 deletions
+20
-12
api-ms-win-crt-multibyte-l1-1-0.spec
...crt-multibyte-l1-1-0/api-ms-win-crt-multibyte-l1-1-0.spec
+1
-1
api-ms-win-crt-private-l1-1-0.spec
...win-crt-private-l1-1-0/api-ms-win-crt-private-l1-1-0.spec
+1
-1
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
+9
-2
msvcrt.h
dlls/msvcrt/msvcrt.h
+1
-0
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-1
ucrtbase.spec
dlls/ucrtbase/ucrtbase.spec
+2
-2
No files found.
dlls/api-ms-win-crt-multibyte-l1-1-0/api-ms-win-crt-multibyte-l1-1-0.spec
View file @
95b3ff9f
...
...
@@ -57,7 +57,7 @@
@ cdecl _ismbcsymbol(long) ucrtbase._ismbcsymbol
@ stub _ismbcsymbol_l
@ cdecl _ismbcupper(long) ucrtbase._ismbcupper
@
stub
_ismbcupper_l
@
cdecl _ismbcupper_l(long ptr) ucrtbase.
_ismbcupper_l
@ cdecl _ismbslead(ptr ptr) ucrtbase._ismbslead
@ stub _ismbslead_l
@ cdecl _ismbstrail(ptr ptr) ucrtbase._ismbstrail
...
...
dlls/api-ms-win-crt-private-l1-1-0/api-ms-win-crt-private-l1-1-0.spec
View file @
95b3ff9f
...
...
@@ -430,7 +430,7 @@
@ cdecl _o__ismbcsymbol(long) ucrtbase._o__ismbcsymbol
@ stub _o__ismbcsymbol_l
@ cdecl _o__ismbcupper(long) ucrtbase._o__ismbcupper
@
stub
_o__ismbcupper_l
@
cdecl _o__ismbcupper_l(long ptr) ucrtbase.
_o__ismbcupper_l
@ cdecl _o__ismbslead(ptr ptr) ucrtbase._o__ismbslead
@ stub _o__ismbslead_l
@ cdecl _o__ismbstrail(ptr ptr) ucrtbase._o__ismbstrail
...
...
dlls/msvcr100/msvcr100.spec
View file @
95b3ff9f
...
...
@@ -1005,7 +1005,7 @@
@ cdecl _ismbcsymbol(long)
@ stub _ismbcsymbol_l
@ cdecl _ismbcupper(long)
@
stub _ismbcupper_l
@
cdecl _ismbcupper_l(long ptr)
@ cdecl _ismbslead(ptr ptr)
@ stub _ismbslead_l
@ cdecl _ismbstrail(ptr ptr)
...
...
dlls/msvcr110/msvcr110.spec
View file @
95b3ff9f
...
...
@@ -1351,7 +1351,7 @@
@ cdecl _ismbcsymbol(long)
@ stub _ismbcsymbol_l
@ cdecl _ismbcupper(long)
@
stub _ismbcupper_l
@
cdecl _ismbcupper_l(long ptr)
@ cdecl _ismbslead(ptr ptr)
@ stub _ismbslead_l
@ cdecl _ismbstrail(ptr ptr)
...
...
dlls/msvcr120/msvcr120.spec
View file @
95b3ff9f
...
...
@@ -1356,7 +1356,7 @@
@ cdecl _ismbcsymbol(long)
@ stub _ismbcsymbol_l
@ cdecl _ismbcupper(long)
@
stub _ismbcupper_l
@
cdecl _ismbcupper_l(long ptr)
@ cdecl _ismbslead(ptr ptr)
@ stub _ismbslead_l
@ cdecl _ismbstrail(ptr ptr)
...
...
dlls/msvcr80/msvcr80.spec
View file @
95b3ff9f
...
...
@@ -677,7 +677,7 @@
@ cdecl _ismbcsymbol(long)
@ stub _ismbcsymbol_l
@ cdecl _ismbcupper(long)
@
stub _ismbcupper_l
@
cdecl _ismbcupper_l(long ptr)
@ cdecl _ismbslead(ptr ptr)
@ stub _ismbslead_l
@ cdecl _ismbstrail(ptr ptr)
...
...
dlls/msvcr90/msvcr90.spec
View file @
95b3ff9f
...
...
@@ -655,7 +655,7 @@
@ cdecl _ismbcsymbol(long)
@ stub _ismbcsymbol_l
@ cdecl _ismbcupper(long)
@
stub _ismbcupper_l
@
cdecl _ismbcupper_l(long ptr)
@ cdecl _ismbslead(ptr ptr)
@ stub _ismbslead_l
@ cdecl _ismbstrail(ptr ptr)
...
...
dlls/msvcrt/mbcs.c
View file @
95b3ff9f
...
...
@@ -1492,12 +1492,19 @@ int CDECL _ismbclower(unsigned int ch)
}
/*********************************************************************
* _ismbcupper_l (MSVCRT.@)
*/
int
CDECL
_ismbcupper_l
(
unsigned
int
ch
,
MSVCRT__locale_t
locale
)
{
return
MSVCRT__iswupper_l
(
msvcrt_mbc_to_wc_l
(
ch
,
locale
),
locale
);
}
/*********************************************************************
* _ismbcupper (MSVCRT.@)
*/
int
CDECL
_ismbcupper
(
unsigned
int
ch
)
{
MSVCRT_wchar_t
wch
=
msvcrt_mbc_to_wc
(
ch
);
return
(
get_char_typeW
(
wch
)
&
C1_LOWER
);
return
_ismbcupper_l
(
ch
,
NULL
);
}
/*********************************************************************
...
...
dlls/msvcrt/msvcrt.h
View file @
95b3ff9f
...
...
@@ -1206,6 +1206,7 @@ int __cdecl MSVCRT__iswdigit_l(MSVCRT_wchar_t, MSVCRT__locale_t);
int
__cdecl
MSVCRT__iswgraph_l
(
MSVCRT_wchar_t
,
MSVCRT__locale_t
);
int
__cdecl
MSVCRT__iswalpha_l
(
MSVCRT_wchar_t
,
MSVCRT__locale_t
);
int
__cdecl
MSVCRT__iswlower_l
(
MSVCRT_wchar_t
,
MSVCRT__locale_t
);
int
__cdecl
MSVCRT__iswupper_l
(
MSVCRT_wchar_t
,
MSVCRT__locale_t
);
/* Maybe one day we'll enable the invalid parameter handlers with the full set of information (msvcrXXd)
* #define MSVCRT_INVALID_PMT(x) MSVCRT_call_invalid_parameter_handler(x, __FUNCTION__, __FILE__, __LINE__, 0)
...
...
dlls/msvcrt/msvcrt.spec
View file @
95b3ff9f
...
...
@@ -623,7 +623,7 @@
@ cdecl _ismbcsymbol(long)
# stub _ismbcsymbol_l(long ptr)
@ cdecl _ismbcupper(long)
# stub
_ismbcupper_l(long ptr)
@ cdecl
_ismbcupper_l(long ptr)
@ cdecl _ismbslead(ptr ptr)
# stub _ismbslead_l(long ptr)
@ cdecl _ismbstrail(ptr ptr)
...
...
dlls/ucrtbase/ucrtbase.spec
View file @
95b3ff9f
...
...
@@ -495,7 +495,7 @@
@ cdecl _ismbcsymbol(long)
@ stub _ismbcsymbol_l
@ cdecl _ismbcupper(long)
@
stub _ismbcupper_l
@
cdecl _ismbcupper_l(long ptr)
@ cdecl _ismbslead(ptr ptr)
@ stub _ismbslead_l
@ cdecl _ismbstrail(ptr ptr)
...
...
@@ -1094,7 +1094,7 @@
@ cdecl _o__ismbcsymbol(long) _ismbcsymbol
@ stub _o__ismbcsymbol_l
@ cdecl _o__ismbcupper(long) _ismbcupper
@
stub _o_
_ismbcupper_l
@
cdecl _o__ismbcupper_l(long ptr)
_ismbcupper_l
@ cdecl _o__ismbslead(ptr ptr) _ismbslead
@ stub _o__ismbslead_l
@ cdecl _o__ismbstrail(ptr ptr) _ismbstrail
...
...
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