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
24f9290c
Commit
24f9290c
authored
Jun 15, 2012
by
Piotr Caban
Committed by
Alexandre Julliard
Jun 15, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp90: Added basic_ios::widen implementation.
parent
65a364a2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
ios.c
dlls/msvcp90/ios.c
+4
-4
msvcp90.h
dlls/msvcp90/msvcp90.h
+2
-0
No files found.
dlls/msvcp90/ios.c
View file @
24f9290c
...
...
@@ -3259,8 +3259,8 @@ basic_ostream_char* __thiscall basic_ios_char_tie_get(const basic_ios_char *this
DEFINE_THISCALL_WRAPPER
(
basic_ios_char_widen
,
8
)
char
__thiscall
basic_ios_char_widen
(
basic_ios_char
*
this
,
char
ch
)
{
FIXME
(
"(%p %c) stub
\n
"
,
this
,
ch
);
return
0
;
TRACE
(
"(%p %c)
\n
"
,
this
,
ch
);
return
ctype_char_widen_ch
(
ctype_char_use_facet
(
this
->
strbuf
->
loc
),
ch
)
;
}
...
...
@@ -3539,8 +3539,8 @@ basic_ostream_wchar* __thiscall basic_ios_wchar_tie_get(const basic_ios_wchar *t
DEFINE_THISCALL_WRAPPER
(
basic_ios_wchar_widen
,
8
)
wchar_t
__thiscall
basic_ios_wchar_widen
(
basic_ios_wchar
*
this
,
char
ch
)
{
FIXM
E
(
"(%p %c)
\n
"
,
this
,
ch
);
return
0
;
TRAC
E
(
"(%p %c)
\n
"
,
this
,
ch
);
return
ctype_wchar_widen_ch
(
ctype_wchar_use_facet
(
this
->
strbuf
->
loc
),
ch
)
;
}
/* Caution: basic_ostream uses virtual inheritance.
...
...
dlls/msvcp90/msvcp90.h
View file @
24f9290c
...
...
@@ -332,6 +332,7 @@ typedef struct {
MSVCP_bool
__thiscall
ctype_char_is_ch
(
const
ctype_char
*
,
short
,
char
);
char
__thiscall
ctype_char_narrow_ch
(
const
ctype_char
*
,
char
,
char
);
char
__thiscall
ctype_char_widen_ch
(
const
ctype_char
*
,
char
);
typedef
struct
{
LCID
handle
;
...
...
@@ -346,6 +347,7 @@ typedef struct {
}
ctype_wchar
;
char
__thiscall
ctype_wchar_narrow_ch
(
const
ctype_wchar
*
,
wchar_t
,
char
);
wchar_t
__thiscall
ctype_wchar_widen_ch
(
const
ctype_wchar
*
,
char
);
/* class locale */
typedef
struct
...
...
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