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
69ea5768
Commit
69ea5768
authored
May 12, 2011
by
Piotr Caban
Committed by
Alexandre Julliard
May 12, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Added _towupper_l and _towlower_l implementation.
parent
c81d6e21
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
2 deletions
+18
-2
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+2
-2
wcs.c
dlls/msvcrt/wcs.c
+16
-0
No files found.
dlls/msvcrt/msvcrt.spec
View file @
69ea5768
...
...
@@ -980,8 +980,8 @@
# stub _tolower_l(long ptr)
@ cdecl _toupper(long) MSVCRT__toupper
# stub _toupper_l(long ptr)
# stub _towlower_l(long ptr)
# stub _towupper_l(long ptr)
@ cdecl _towlower_l(long ptr) MSVCRT__towlower_l
@ cdecl _towupper_l(long ptr) MSVCRT__towupper_l
@ extern _tzname MSVCRT__tzname
@ cdecl _tzset() MSVCRT__tzset
@ cdecl _ui64toa(int64 ptr long) ntdll._ui64toa
...
...
dlls/msvcrt/wcs.c
View file @
69ea5768
...
...
@@ -1445,3 +1445,19 @@ MSVCRT_size_t CDECL MSVCRT_wcsnlen(const MSVCRT_wchar_t *s, MSVCRT_size_t maxlen
if
(
!
s
[
i
])
break
;
return
i
;
}
/*********************************************************************
* _towupper_l (MSVCRT.@)
*/
int
CDECL
MSVCRT__towupper_l
(
MSVCRT_wint_t
c
,
MSVCRT__locale_t
locale
)
{
return
toupperW
(
c
);
}
/*********************************************************************
* _towlower_l (MSVCRT.@)
*/
int
CDECL
MSVCRT__towlower_l
(
MSVCRT_wint_t
c
,
MSVCRT__locale_t
locale
)
{
return
tolowerW
(
c
);
}
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