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
7a1ff50d
Commit
7a1ff50d
authored
Apr 08, 2010
by
Piotr Caban
Committed by
Alexandre Julliard
Apr 08, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Added implemenatation of _create_locale and _free_locale.
parent
38d4aa2b
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
21 additions
and
9 deletions
+21
-9
msvcr80.spec
dlls/msvcr80/msvcr80.spec
+2
-2
msvcr90.spec
dlls/msvcr90/msvcr90.spec
+2
-2
locale.c
dlls/msvcrt/locale.c
+0
-0
msvcrt.h
dlls/msvcrt/msvcrt.h
+15
-5
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+2
-0
No files found.
dlls/msvcr80/msvcr80.spec
View file @
7a1ff50d
...
...
@@ -338,7 +338,7 @@
@ cdecl _cputs(str) msvcrt._cputs
@ stub _cputws
@ cdecl _creat(str long) msvcrt._creat
@
stub
_create_locale
@
cdecl _create_locale(long str) msvcrt.
_create_locale
@ stub _crt_debugger_hook
@ varargs _cscanf(str) msvcrt._cscanf
@ stub _cscanf_l
...
...
@@ -428,7 +428,7 @@
@ cdecl _fputwchar(long) msvcrt._fputwchar
@ stub _fread_nolock
@ stub _fread_nolock_s
@
stub
_free_locale
@
cdecl _free_locale(ptr) msvcrt.
_free_locale
@ stub _freea
@ stub _freea_s
@ stub _freefls
...
...
dlls/msvcr90/msvcr90.spec
View file @
7a1ff50d
...
...
@@ -330,7 +330,7 @@
@ cdecl _cputs(str) msvcrt._cputs
@ stub _cputws
@ cdecl _creat(str long) msvcrt._creat
@
stub
_create_locale
@
cdecl _create_locale(long str) msvcrt.
_create_locale
@ stub _crt_debugger_hook
@ varargs _cscanf(str) msvcrt._cscanf
@ stub _cscanf_l
...
...
@@ -420,7 +420,7 @@
@ cdecl _fputwchar(long) msvcrt._fputwchar
@ stub _fread_nolock
@ stub _fread_nolock_s
@
stub
_free_locale
@
cdecl _free_locale(ptr) msvcrt.
_free_locale
@ stub _freea
@ stub _freea_s
@ stub _freefls
...
...
dlls/msvcrt/locale.c
View file @
7a1ff50d
This diff is collapsed.
Click to expand it.
dlls/msvcrt/msvcrt.h
View file @
7a1ff50d
...
...
@@ -765,15 +765,25 @@ typedef struct MSVCRT_threadlocaleinfostruct {
int
*
lconv_intl_refcount
;
int
*
lconv_num_refcount
;
int
*
lconv_mon_refcount
;
struct
lconv
*
lconv
;
struct
MSVCRT_
lconv
*
lconv
;
int
*
ctype1_refcount
;
unsigned
short
*
ctype1
;
const
unsigned
short
*
pctype
;
const
unsigned
char
*
pclmap
;
const
unsigned
char
*
pcumap
;
struct
__lc_time_data
*
lc_time_curr
;
unsigned
short
*
pctype
;
unsigned
char
*
pclmap
;
unsigned
char
*
pcumap
;
struct
MSVCRT_
__lc_time_data
*
lc_time_curr
;
}
MSVCRT_threadlocinfo
;
typedef
struct
MSVCRT_threadmbcinfostruct
{
int
refcount
;
int
mbcodepage
;
int
ismbcodepage
;
int
mblcid
;
unsigned
short
mbulinfo
[
6
];
char
mbctype
[
257
];
char
mbcasemap
[
256
];
}
MSVCRT_threadmbcinfo
;
typedef
struct
MSVCRT_threadlocaleinfostruct
*
MSVCRT_pthreadlocinfo
;
typedef
struct
MSVCRT_threadmbcinfostruct
*
MSVCRT_pthreadmbcinfo
;
...
...
dlls/msvcrt/msvcrt.spec
View file @
7a1ff50d
...
...
@@ -1413,3 +1413,5 @@
# Functions not exported in native dll:
@ cdecl _get_invalid_parameter_handler()
@ cdecl _set_invalid_parameter_handler(ptr)
@ cdecl _create_locale(long str)
@ cdecl _free_locale(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