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
55b9bbc4
Commit
55b9bbc4
authored
Jun 25, 2012
by
Piotr Caban
Committed by
Alexandre Julliard
Jun 25, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp90: Added num_put<wchar> implementation.
parent
c73b1356
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
2 deletions
+13
-2
locale.c
dlls/msvcp90/locale.c
+0
-0
msvcp90.h
dlls/msvcp90/msvcp90.h
+12
-1
msvcp90.spec
dlls/msvcp90/msvcp90.spec
+0
-0
string.c
dlls/msvcp90/string.c
+1
-1
No files found.
dlls/msvcp90/locale.c
View file @
55b9bbc4
This diff is collapsed.
Click to expand it.
dlls/msvcp90/msvcp90.h
View file @
55b9bbc4
...
...
@@ -272,7 +272,10 @@ typedef struct _basic_string_wchar
MSVCP_size_t
res
;
}
basic_string_wchar
;
basic_string_wchar
*
__stdcall
MSVCP_basic_string_wchar_ctor_cstr
(
basic_string_wchar
*
,
const
wchar_t
*
);
basic_string_wchar
*
__thiscall
MSVCP_basic_string_wchar_ctor_cstr
(
basic_string_wchar
*
,
const
wchar_t
*
);
void
__thiscall
MSVCP_basic_string_wchar_dtor
(
basic_string_wchar
*
);
const
wchar_t
*
__thiscall
MSVCP_basic_string_wchar_c_str
(
const
basic_string_wchar
*
);
MSVCP_size_t
__thiscall
MSVCP_basic_string_wchar_length
(
const
basic_string_wchar
*
);
char
*
__stdcall
MSVCP_allocator_char_allocate
(
void
*
,
MSVCP_size_t
);
void
__stdcall
MSVCP_allocator_char_deallocate
(
void
*
,
char
*
,
MSVCP_size_t
);
...
...
@@ -537,6 +540,13 @@ typedef struct {
locale
*
loc
;
}
basic_streambuf_wchar
;
typedef
struct
{
MSVCP_bool
failed
;
basic_streambuf_wchar
*
strbuf
;
}
ostreambuf_iterator_wchar
;
unsigned
short
__thiscall
basic_streambuf_wchar_sputc
(
basic_streambuf_wchar
*
,
wchar_t
);
/* class num_get<char> */
typedef
struct
{
locale_facet
facet
;
...
...
@@ -568,6 +578,7 @@ istreambuf_iterator_char *__thiscall num_get_char_get_bool(const num_get*, istre
istreambuf_iterator_char
,
istreambuf_iterator_char
,
ios_base
*
,
int
*
,
MSVCP_bool
*
);
/* class num_put<char> */
/* class num_put<wchar> */
typedef
struct
{
locale_facet
facet
;
_Cvtvec
cvt
;
...
...
dlls/msvcp90/msvcp90.spec
View file @
55b9bbc4
This diff is collapsed.
Click to expand it.
dlls/msvcp90/string.c
View file @
55b9bbc4
...
...
@@ -2962,7 +2962,7 @@ void __thiscall MSVCP_basic_string_wchar_dtor(basic_string_wchar *this)
/* ?length@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBEIXZ */
/* ?length@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QEBA_KXZ */
DEFINE_THISCALL_WRAPPER
(
MSVCP_basic_string_wchar_length
,
4
)
MSVCP_size_t
__thiscall
MSVCP_basic_string_wchar_length
(
basic_string_wchar
*
this
)
MSVCP_size_t
__thiscall
MSVCP_basic_string_wchar_length
(
const
basic_string_wchar
*
this
)
{
TRACE
(
"%p
\n
"
,
this
);
return
this
->
size
;
...
...
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