Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
790f97cb
Commit
790f97cb
authored
Feb 14, 2019
by
Piotr Caban
Committed by
Alexandre Julliard
Feb 14, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Add _ismbbtrail_l implementation.
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
370bf01c
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
24 additions
and
10 deletions
+24
-10
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
msvcr100.spec
dlls/msvcr100/msvcr100.spec
+1
-1
msvcr110.spec
dlls/msvcr110/msvcr110.spec
+1
-1
msvcr120.spec
dlls/msvcr120/msvcr120.spec
+1
-1
msvcr120_app.spec
dlls/msvcr120_app/msvcr120_app.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
+15
-1
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-1
ucrtbase.spec
dlls/ucrtbase/ucrtbase.spec
+1
-1
No files found.
dlls/api-ms-win-crt-multibyte-l1-1-0/api-ms-win-crt-multibyte-l1-1-0.spec
View file @
790f97cb
...
...
@@ -23,7 +23,7 @@
@ cdecl _ismbbpunct(long) ucrtbase._ismbbpunct
@ stub _ismbbpunct_l
@ cdecl _ismbbtrail(long) ucrtbase._ismbbtrail
@
stub
_ismbbtrail_l
@
cdecl _ismbbtrail_l(long ptr) ucrtbase.
_ismbbtrail_l
@ cdecl _ismbcalnum(long) ucrtbase._ismbcalnum
@ stub _ismbcalnum_l
@ cdecl _ismbcalpha(long) ucrtbase._ismbcalpha
...
...
dlls/msvcr100/msvcr100.spec
View file @
790f97cb
...
...
@@ -973,7 +973,7 @@
@ stub _ismbbpunct(long)
@ stub _ismbbpunct_l
@ cdecl _ismbbtrail(long)
@
stub _ismbbtrail_l
@
cdecl _ismbbtrail_l(long ptr)
@ cdecl _ismbcalnum(long)
@ stub _ismbcalnum_l
@ cdecl _ismbcalpha(long)
...
...
dlls/msvcr110/msvcr110.spec
View file @
790f97cb
...
...
@@ -1319,7 +1319,7 @@
@ stub _ismbbpunct(long)
@ stub _ismbbpunct_l
@ cdecl _ismbbtrail(long)
@
stub _ismbbtrail_l
@
cdecl _ismbbtrail_l(long ptr)
@ cdecl _ismbcalnum(long)
@ stub _ismbcalnum_l
@ cdecl _ismbcalpha(long)
...
...
dlls/msvcr120/msvcr120.spec
View file @
790f97cb
...
...
@@ -1322,7 +1322,7 @@
@ stub _ismbbpunct(long)
@ stub _ismbbpunct_l
@ cdecl _ismbbtrail(long)
@
stub _ismbbtrail_l
@
cdecl _ismbbtrail_l(long ptr)
@ cdecl _ismbcalnum(long)
@ stub _ismbcalnum_l
@ cdecl _ismbcalpha(long)
...
...
dlls/msvcr120_app/msvcr120_app.spec
View file @
790f97cb
...
...
@@ -1225,7 +1225,7 @@
@ cdecl _ismbbpunct(long) msvcr120._ismbbpunct
@ stub _ismbbpunct_l
@ cdecl _ismbbtrail(long) msvcr120._ismbbtrail
@
stub
_ismbbtrail_l
@
cdecl _ismbbtrail_l(long ptr) msvcr120.
_ismbbtrail_l
@ cdecl _isnan(double) msvcr120._isnan
@ cdecl -arch=x86_64 _isnanf(float) msvcr120._isnanf
@ cdecl _isprint_l(long ptr) msvcr120._isprint_l
...
...
dlls/msvcr80/msvcr80.spec
View file @
790f97cb
...
...
@@ -645,7 +645,7 @@
@ stub _ismbbpunct(long)
@ stub _ismbbpunct_l
@ cdecl _ismbbtrail(long)
@
stub _ismbbtrail_l
@
cdecl _ismbbtrail_l(long ptr)
@ cdecl _ismbcalnum(long)
@ stub _ismbcalnum_l
@ cdecl _ismbcalpha(long)
...
...
dlls/msvcr90/msvcr90.spec
View file @
790f97cb
...
...
@@ -623,7 +623,7 @@
@ stub _ismbbpunct(long)
@ stub _ismbbpunct_l
@ cdecl _ismbbtrail(long)
@
stub _ismbbtrail_l
@
cdecl _ismbbtrail_l(long ptr)
@ cdecl _ismbcalnum(long)
@ stub _ismbcalnum_l
@ cdecl _ismbcalpha(long)
...
...
dlls/msvcrt/mbcs.c
View file @
790f97cb
...
...
@@ -1551,13 +1551,27 @@ int CDECL _ismbblead(unsigned int c)
return
_ismbblead_l
(
c
,
NULL
);
}
/*********************************************************************
* _ismbbtrail_l(MSVCRT.@)
*/
int
CDECL
_ismbbtrail_l
(
unsigned
int
c
,
MSVCRT__locale_t
locale
)
{
MSVCRT_pthreadmbcinfo
mbcinfo
;
if
(
!
locale
)
mbcinfo
=
get_mbcinfo
();
else
mbcinfo
=
locale
->
mbcinfo
;
return
(
mbcinfo
->
mbctype
[(
c
&
0xff
)
+
1
]
&
_M2
)
!=
0
;
}
/*********************************************************************
* _ismbbtrail(MSVCRT.@)
*/
int
CDECL
_ismbbtrail
(
unsigned
int
c
)
{
return
(
get_mbcinfo
()
->
mbctype
[(
c
&
0xff
)
+
1
]
&
_M2
)
!=
0
;
return
_ismbbtrail_l
(
c
,
NULL
)
;
}
/*********************************************************************
...
...
dlls/msvcrt/msvcrt.spec
View file @
790f97cb
...
...
@@ -594,7 +594,7 @@
@ stub _ismbbpunct(long)
# stub _ismbbpunct_l(long ptr)
@ cdecl _ismbbtrail(long)
# stub
_ismbbtrail_l(long ptr)
@ cdecl
_ismbbtrail_l(long ptr)
@ cdecl _ismbcalnum(long)
# stub _ismbcalnum_l(long ptr)
@ cdecl _ismbcalpha(long)
...
...
dlls/ucrtbase/ucrtbase.spec
View file @
790f97cb
...
...
@@ -461,7 +461,7 @@
@ stub _ismbbpunct(long)
@ stub _ismbbpunct_l
@ cdecl _ismbbtrail(long)
@
stub _ismbbtrail_l
@
cdecl _ismbbtrail_l(long ptr)
@ cdecl _ismbcalnum(long)
@ stub _ismbcalnum_l
@ cdecl _ismbcalpha(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