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
975801cc
Commit
975801cc
authored
Mar 27, 2013
by
Piotr Caban
Committed by
Alexandre Julliard
Mar 27, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Don't forward towupper and towlower to ntdll.
parent
b6265562
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 @
975801cc
...
...
@@ -1453,8 +1453,8 @@
# stub tmpnam_s(ptr long)
@ cdecl tolower(long) MSVCRT_tolower
@ cdecl toupper(long) MSVCRT_toupper
@ cdecl towlower(long)
ntdll.
towlower
@ cdecl towupper(long)
ntdll.
towupper
@ cdecl towlower(long)
MSVCRT_
towlower
@ cdecl towupper(long)
MSVCRT_
towupper
@ cdecl ungetc(long ptr) MSVCRT_ungetc
@ cdecl ungetwc(long ptr) MSVCRT_ungetwc
# stub utime
...
...
dlls/msvcrt/wcs.c
View file @
975801cc
...
...
@@ -1592,9 +1592,25 @@ int CDECL MSVCRT__towupper_l(MSVCRT_wint_t c, MSVCRT__locale_t locale)
}
/*********************************************************************
* towupper (MSVCRT.@)
*/
int
CDECL
MSVCRT_towupper
(
MSVCRT_wint_t
c
)
{
return
MSVCRT__towupper_l
(
c
,
NULL
);
}
/*********************************************************************
* _towlower_l (MSVCRT.@)
*/
int
CDECL
MSVCRT__towlower_l
(
MSVCRT_wint_t
c
,
MSVCRT__locale_t
locale
)
{
return
tolowerW
(
c
);
}
/*********************************************************************
* towlower (MSVCRT.@)
*/
int
CDECL
MSVCRT_towlower
(
MSVCRT_wint_t
c
)
{
return
MSVCRT__towlower_l
(
c
,
NULL
);
}
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