Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
d16c72de
Commit
d16c72de
authored
Feb 28, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Feb 28, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Add a stub for _wsetlocale.
parent
20d5741f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletion
+14
-1
locale.c
dlls/msvcrt/locale.c
+13
-0
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-1
No files found.
dlls/msvcrt/locale.c
View file @
d16c72de
...
...
@@ -464,6 +464,19 @@ char* MSVCRT_setlocale(int category, const char* locale)
return
MSVCRT_current_lc_all
;
}
/*********************************************************************
* setlocale (MSVCRT.@)
*/
MSVCRT_wchar_t
*
MSVCRT__wsetlocale
(
int
category
,
const
MSVCRT_wchar_t
*
locale
)
{
static
MSVCRT_wchar_t
fake
[]
=
{
'E'
,
'n'
,
'g'
,
'l'
,
'i'
,
's'
,
'h'
,
'_'
,
'U'
,
'n'
,
'i'
,
't'
,
'e'
,
'd'
,
' '
,
'S'
,
't'
,
'a'
,
't'
,
'e'
,
's'
,
'.'
,
'1'
,
'2'
,
'5'
,
'2'
,
0
};
FIXME
(
"%d %s
\n
"
,
category
,
debugstr_w
(
locale
));
return
fake
;
}
/*********************************************************************
* _Getdays (MSVCRT.@)
...
...
dlls/msvcrt/msvcrt.spec
View file @
d16c72de
...
...
@@ -541,7 +541,7 @@
@ cdecl _write(long ptr long)
@ cdecl _wrmdir(wstr)
@ stub _wsearchenv #(wstr wstr ptr)
@
stub _wsetlocale #(long wstr)
@
cdecl _wsetlocale(long wstr) MSVCRT__wsetlocale
@ varargs _wsopen (wstr long long) MSVCRT__wsopen
@ stub _wspawnl #(long wstr wstr) varargs
@ stub _wspawnle #(long wstr wstr) varargs
...
...
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