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
8f303050
Commit
8f303050
authored
Nov 07, 2023
by
Bartosz Kosiorek
Committed by
Alexandre Julliard
Nov 10, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Add __iswcsymf implementation.
parent
f82871e7
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
15 additions
and
7 deletions
+15
-7
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
ctype.c
dlls/msvcrt/ctype.c
+8
-0
ucrtbase.spec
dlls/ucrtbase/ucrtbase.spec
+1
-1
No files found.
dlls/msvcr100/msvcr100.spec
View file @
8f303050
...
...
@@ -599,7 +599,7 @@
@ cdecl __iscsym(long)
@ cdecl __iscsymf(long)
@ cdecl __iswcsym(long)
@
stub __iswcsymf
@
cdecl __iswcsymf(long)
# extern __lconv
@ cdecl __lconv_init()
@ cdecl -arch=i386 -norelay __libm_sse2_acos()
...
...
dlls/msvcr110/msvcr110.spec
View file @
8f303050
...
...
@@ -947,7 +947,7 @@
@ cdecl __iscsym(long)
@ cdecl __iscsymf(long)
@ cdecl __iswcsym(long)
@
stub __iswcsymf
@
cdecl __iswcsymf(long)
@ stdcall -arch=arm __jump_unwind(ptr ptr) ntdll.__jump_unwind
# extern __lconv
@ cdecl __lconv_init()
...
...
dlls/msvcr120/msvcr120.spec
View file @
8f303050
...
...
@@ -938,7 +938,7 @@
@ cdecl __iscsym(long)
@ cdecl __iscsymf(long)
@ cdecl __iswcsym(long)
@
stub __iswcsymf
@
cdecl __iswcsymf(long)
@ stdcall -arch=arm __jump_unwind(ptr ptr) ntdll.__jump_unwind
# extern __lconv
@ cdecl __lconv_init()
...
...
dlls/msvcr120_app/msvcr120_app.spec
View file @
8f303050
...
...
@@ -915,7 +915,7 @@
@ cdecl __iscsym(long) msvcr120.__iscsym
@ cdecl __iscsymf(long) msvcr120.__iscsymf
@ cdecl __iswcsym(long) msvcr120.__iswcsym
@
stub
__iswcsymf
@
cdecl __iswcsymf(long) msvcr120.
__iswcsymf
@ stdcall -arch=arm __jump_unwind(ptr ptr) msvcr120.__jump_unwind
# extern __lconv
@ cdecl __lconv_init() msvcr120.__lconv_init
...
...
dlls/msvcr80/msvcr80.spec
View file @
8f303050
...
...
@@ -238,7 +238,7 @@
@ cdecl __iscsym(long)
@ cdecl __iscsymf(long)
@ cdecl __iswcsym(long)
@
stub __iswcsymf
@
cdecl __iswcsymf(long)
# extern __lc_clike
@ extern __lc_codepage MSVCRT___lc_codepage
@ extern __lc_collate_cp MSVCRT___lc_collate_cp
...
...
dlls/msvcr90/msvcr90.spec
View file @
8f303050
...
...
@@ -227,7 +227,7 @@
@ cdecl __iscsym(long)
@ cdecl __iscsymf(long)
@ cdecl __iswcsym(long)
@
stub __iswcsymf
@
cdecl __iswcsymf(long)
# extern __lc_clike
@ extern __lc_codepage MSVCRT___lc_codepage
@ extern __lc_collate_cp MSVCRT___lc_collate_cp
...
...
dlls/msvcrt/ctype.c
View file @
8f303050
...
...
@@ -461,6 +461,14 @@ int CDECL __iswcsym(wint_t c)
}
/*********************************************************************
* __iswcsymf (MSVCRT.@)
*/
int
CDECL
__iswcsymf
(
wint_t
c
)
{
return
(
iswalpha
(
c
)
||
c
==
'_'
);
}
/*********************************************************************
* _toupper_l (MSVCRT.@)
*/
int
CDECL
_toupper_l
(
int
c
,
_locale_t
locale
)
...
...
dlls/ucrtbase/ucrtbase.spec
View file @
8f303050
...
...
@@ -100,7 +100,7 @@
@ cdecl __iscsym(long)
@ cdecl __iscsymf(long)
@ cdecl __iswcsym(long)
@
stub __iswcsymf
@
cdecl __iswcsymf(long)
@ stdcall -arch=arm __jump_unwind(ptr ptr) ntdll.__jump_unwind
@ cdecl -arch=i386 -norelay __libm_sse2_acos()
@ cdecl -arch=i386 -norelay __libm_sse2_acosf()
...
...
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