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
d940ac24
Commit
d940ac24
authored
Jun 22, 2015
by
Piotr Caban
Committed by
Alexandre Julliard
Jun 22, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcr110: Add __crtGetLocaleInfoEx implementation.
parent
443ef6e7
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
2 deletions
+11
-2
msvcr110.spec
dlls/msvcr110/msvcr110.spec
+1
-1
msvcr120.spec
dlls/msvcr120/msvcr120.spec
+1
-1
locale.c
dlls/msvcrt/locale.c
+9
-0
No files found.
dlls/msvcr110/msvcr110.spec
View file @
d940ac24
...
...
@@ -917,7 +917,7 @@
@ stub -arch=i386,win64 __crtFlsGetValue
@ stub -arch=i386,win64 __crtFlsSetValue
@ stub -arch=i386,win64 __crtGetDateFormatEx
@
stub -arch=i386,win64 __crtGetLocaleInfoEx
@
cdecl -arch=i386,win64 __crtGetLocaleInfoEx(wstr long ptr long)
@ cdecl __crtGetShowWindowMode() MSVCR110__crtGetShowWindowMode
@ stub -arch=i386,win64 __crtGetTimeFormatEx
@ stub -arch=i386,win64 __crtGetUserDefaultLocaleName
...
...
dlls/msvcr120/msvcr120.spec
View file @
d940ac24
...
...
@@ -902,7 +902,7 @@
@ stub -arch=i386,win64 __crtFlsSetValue
@ stub -arch=i386,win64 __crtGetDateFormatEx
@ stub __crtGetFileInformationByHandleEx
@
stub -arch=i386,win64 __crtGetLocaleInfoEx
@
cdecl -arch=i386,win64 __crtGetLocaleInfoEx(wstr long ptr long)
@ cdecl __crtGetShowWindowMode() MSVCR110__crtGetShowWindowMode
@ stub __crtGetTickCount64
@ stub -arch=i386,win64 __crtGetTimeFormatEx
...
...
dlls/msvcrt/locale.c
View file @
d940ac24
...
...
@@ -628,6 +628,15 @@ int CDECL __crtGetLocaleInfoW( LCID lcid, LCTYPE type, MSVCRT_wchar_t *buffer, i
}
/*********************************************************************
* __crtGetLocaleInfoEx (MSVC110.@)
*/
int
CDECL
__crtGetLocaleInfoEx
(
const
WCHAR
*
locale
,
LCTYPE
type
,
MSVCRT_wchar_t
*
buffer
,
int
len
)
{
TRACE
(
"(%s, %x, %p, %d)
\n
"
,
debugstr_w
(
locale
),
type
,
buffer
,
len
);
return
GetLocaleInfoEx
(
locale
,
type
,
buffer
,
len
);
}
/*********************************************************************
* btowc(MSVCRT.@)
*/
MSVCRT_wint_t
CDECL
MSVCRT_btowc
(
int
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