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
cebb9470
Commit
cebb9470
authored
Feb 15, 2019
by
Nikolay Sivov
Committed by
Alexandre Julliard
Feb 15, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Add _ismbcl2().
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
c166dfec
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
32 additions
and
9 deletions
+32
-9
msvcr100.spec
dlls/msvcr100/msvcr100.spec
+1
-1
msvcr110.spec
dlls/msvcr110/msvcr110.spec
+1
-1
msvcr120.spec
dlls/msvcr120/msvcr120.spec
+1
-1
msvcr70.spec
dlls/msvcr70/msvcr70.spec
+1
-1
msvcr71.spec
dlls/msvcr71/msvcr71.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
+8
-0
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-1
string.c
dlls/msvcrt/tests/string.c
+15
-0
ucrtbase.spec
dlls/ucrtbase/ucrtbase.spec
+1
-1
No files found.
dlls/msvcr100/msvcr100.spec
View file @
cebb9470
...
...
@@ -990,7 +990,7 @@
@ cdecl _ismbcl0_l(long ptr)
@ cdecl _ismbcl1(long)
@ cdecl _ismbcl1_l(long ptr)
@
stub
_ismbcl2(long)
@
cdecl
_ismbcl2(long)
@ cdecl _ismbcl2_l(long ptr)
@ cdecl _ismbclegal(long)
@ cdecl _ismbclegal_l(long ptr)
...
...
dlls/msvcr110/msvcr110.spec
View file @
cebb9470
...
...
@@ -1336,7 +1336,7 @@
@ cdecl _ismbcl0_l(long ptr)
@ cdecl _ismbcl1(long)
@ cdecl _ismbcl1_l(long ptr)
@
stub
_ismbcl2(long)
@
cdecl
_ismbcl2(long)
@ cdecl _ismbcl2_l(long ptr)
@ cdecl _ismbclegal(long)
@ cdecl _ismbclegal_l(long ptr)
...
...
dlls/msvcr120/msvcr120.spec
View file @
cebb9470
...
...
@@ -1341,7 +1341,7 @@
@ cdecl _ismbcl0_l(long ptr)
@ cdecl _ismbcl1(long)
@ cdecl _ismbcl1_l(long ptr)
@
stub
_ismbcl2(long)
@
cdecl
_ismbcl2(long)
@ cdecl _ismbcl2_l(long ptr)
@ cdecl _ismbclegal(long)
@ cdecl _ismbclegal_l(long ptr)
...
...
dlls/msvcr70/msvcr70.spec
View file @
cebb9470
...
...
@@ -383,7 +383,7 @@
@ cdecl _ismbckata(long)
@ cdecl _ismbcl0(long)
@ cdecl _ismbcl1(long)
@
stub
_ismbcl2(long)
@
cdecl
_ismbcl2(long)
@ cdecl _ismbclegal(long)
@ cdecl _ismbclower(long)
@ cdecl _ismbcprint(long)
...
...
dlls/msvcr71/msvcr71.spec
View file @
cebb9470
...
...
@@ -378,7 +378,7 @@
@ cdecl _ismbckata(long)
@ cdecl _ismbcl0(long)
@ cdecl _ismbcl1(long)
@
stub
_ismbcl2(long)
@
cdecl
_ismbcl2(long)
@ cdecl _ismbclegal(long)
@ cdecl _ismbclower(long)
@ cdecl _ismbcprint(long)
...
...
dlls/msvcr80/msvcr80.spec
View file @
cebb9470
...
...
@@ -662,7 +662,7 @@
@ cdecl _ismbcl0_l(long ptr)
@ cdecl _ismbcl1(long)
@ cdecl _ismbcl1_l(long ptr)
@
stub
_ismbcl2(long)
@
cdecl
_ismbcl2(long)
@ cdecl _ismbcl2_l(long ptr)
@ cdecl _ismbclegal(long)
@ cdecl _ismbclegal_l(long ptr)
...
...
dlls/msvcr90/msvcr90.spec
View file @
cebb9470
...
...
@@ -640,7 +640,7 @@
@ cdecl _ismbcl0_l(long ptr)
@ cdecl _ismbcl1(long)
@ cdecl _ismbcl1_l(long ptr)
@
stub
_ismbcl2(long)
@
cdecl
_ismbcl2(long)
@ cdecl _ismbcl2_l(long ptr)
@ cdecl _ismbclegal(long)
@ cdecl _ismbclegal_l(long ptr)
...
...
dlls/msvcrt/mbcs.c
View file @
cebb9470
...
...
@@ -2629,3 +2629,11 @@ int CDECL _ismbcl2_l(unsigned int c, MSVCRT__locale_t locale)
return
0
;
}
/*********************************************************************
* _ismbcl2 (MSVCRT.@)
*/
int
CDECL
_ismbcl2
(
unsigned
int
c
)
{
return
_ismbcl2_l
(
c
,
NULL
);
}
dlls/msvcrt/msvcrt.spec
View file @
cebb9470
...
...
@@ -611,7 +611,7 @@
@ cdecl _ismbcl0_l(long ptr)
@ cdecl _ismbcl1(long)
@ cdecl _ismbcl1_l(long ptr)
@
stub
_ismbcl2(long)
@
cdecl
_ismbcl2(long)
@ cdecl _ismbcl2_l(long ptr)
@ cdecl _ismbclegal(long)
@ cdecl _ismbclegal_l(long ptr)
...
...
dlls/msvcrt/tests/string.c
View file @
cebb9470
...
...
@@ -3278,6 +3278,9 @@ static void test__ismbclx(void)
ret
=
_ismbcl1
(
0
);
ok
(
!
ret
,
"got %d
\n
"
,
ret
);
ret
=
_ismbcl2
(
0
);
ok
(
!
ret
,
"got %d
\n
"
,
ret
);
cp
=
_setmbcp
(
1252
);
ret
=
_ismbcl0
(
0x8140
);
...
...
@@ -3286,6 +3289,9 @@ static void test__ismbclx(void)
ret
=
_ismbcl1
(
0x889f
);
ok
(
!
ret
,
"got %d
\n
"
,
ret
);
ret
=
_ismbcl2
(
0x989f
);
ok
(
!
ret
,
"got %d
\n
"
,
ret
);
_setmbcp
(
932
);
ret
=
_ismbcl0
(
0
);
...
...
@@ -3306,6 +3312,15 @@ static void test__ismbclx(void)
ret
=
_ismbcl1
(
0x88fd
);
ok
(
!
ret
,
"got %d
\n
"
,
ret
);
ret
=
_ismbcl2
(
0
);
ok
(
!
ret
,
"got %d
\n
"
,
ret
);
ret
=
_ismbcl2
(
0x989f
);
ok
(
ret
,
"got %d
\n
"
,
ret
);
ret
=
_ismbcl2
(
0x993f
);
ok
(
!
ret
,
"got %d
\n
"
,
ret
);
_setmbcp
(
cp
);
}
...
...
dlls/ucrtbase/ucrtbase.spec
View file @
cebb9470
...
...
@@ -480,7 +480,7 @@
@ cdecl _ismbcl0_l(long ptr)
@ cdecl _ismbcl1(long)
@ cdecl _ismbcl1_l(long ptr)
@
stub
_ismbcl2(long)
@
cdecl
_ismbcl2(long)
@ cdecl _ismbcl2_l(long ptr)
@ cdecl _ismbclegal(long)
@ cdecl _ismbclegal_l(long ptr)
...
...
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