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
0446d426
Commit
0446d426
authored
Aug 16, 2012
by
Piotr Caban
Committed by
Alexandre Julliard
Aug 16, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp100: Fixed ctype class virtual functions table.
parent
197de8d6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
13 deletions
+7
-13
locale.c
dlls/msvcp100/locale.c
+7
-13
No files found.
dlls/msvcp100/locale.c
View file @
0446d426
...
...
@@ -1372,7 +1372,7 @@ ctype_char* __thiscall MSVCP_ctype_char_vector_dtor(ctype_char *this, unsigned i
/* ?do_narrow@?$ctype@D@std@@MBEDDD@Z */
/* ?do_narrow@?$ctype@D@std@@MEBADDD@Z */
DEFINE_THISCALL_WRAPPER
(
ctype_char_do_narrow_ch
,
12
)
#define call_ctype_char_do_narrow_ch(this, ch, unused) CALL_VTBL_FUNC(this, 3
6
, \
#define call_ctype_char_do_narrow_ch(this, ch, unused) CALL_VTBL_FUNC(this, 3
2
, \
char, (const ctype_char*, char, char), (this, ch, unused))
char
__thiscall
ctype_char_do_narrow_ch
(
const
ctype_char
*
this
,
char
ch
,
char
unused
)
{
...
...
@@ -1383,7 +1383,7 @@ char __thiscall ctype_char_do_narrow_ch(const ctype_char *this, char ch, char un
/* ?do_narrow@?$ctype@D@std@@MBEPBDPBD0DPAD@Z */
/* ?do_narrow@?$ctype@D@std@@MEBAPEBDPEBD0DPEAD@Z */
DEFINE_THISCALL_WRAPPER
(
ctype_char_do_narrow
,
20
)
#define call_ctype_char_do_narrow(this, first, last, unused, dest) CALL_VTBL_FUNC(this,
32
, \
#define call_ctype_char_do_narrow(this, first, last, unused, dest) CALL_VTBL_FUNC(this,
28
, \
const char*, (const ctype_char*, const char*, const char*, char, char*), \
(this, first, last, unused, dest))
const
char
*
__thiscall
ctype_char_do_narrow
(
const
ctype_char
*
this
,
...
...
@@ -2000,7 +2000,7 @@ char __thiscall ctype_wchar__Donarrow(const ctype_wchar *this, wchar_t ch, char
/* ?do_narrow@?$ctype@G@std@@MBEDGD@Z */
/* ?do_narrow@?$ctype@G@std@@MEBADGD@Z */
DEFINE_THISCALL_WRAPPER
(
ctype_wchar_do_narrow_ch
,
12
)
#define call_ctype_wchar_do_narrow_ch(this, ch, dflt) CALL_VTBL_FUNC(this,
52
, \
#define call_ctype_wchar_do_narrow_ch(this, ch, dflt) CALL_VTBL_FUNC(this,
48
, \
char, (const ctype_wchar*, wchar_t, char), (this, ch, dflt))
char
__thiscall
ctype_wchar_do_narrow_ch
(
const
ctype_wchar
*
this
,
wchar_t
ch
,
char
dflt
)
{
...
...
@@ -2012,7 +2012,7 @@ char __thiscall ctype_wchar_do_narrow_ch(const ctype_wchar *this, wchar_t ch, ch
/* ?do_narrow@?$ctype@G@std@@MBEPBGPBG0DPAD@Z */
/* ?do_narrow@?$ctype@G@std@@MEBAPEBGPEBG0DPEAD@Z */
DEFINE_THISCALL_WRAPPER
(
ctype_wchar_do_narrow
,
20
)
#define call_ctype_wchar_do_narrow(this, first, last, dflt, dest) CALL_VTBL_FUNC(this, 4
8
, \
#define call_ctype_wchar_do_narrow(this, first, last, dflt, dest) CALL_VTBL_FUNC(this, 4
4
, \
const wchar_t*, (const ctype_wchar*, const wchar_t*, const wchar_t*, char, char*), \
(this, first, last, dflt, dest))
const
wchar_t
*
__thiscall
ctype_wchar_do_narrow
(
const
ctype_wchar
*
this
,
...
...
@@ -8590,10 +8590,8 @@ void __asm_dummy_vtables(void) {
VTABLE_ADD_FUNC
(
ctype_char_do_toupper_ch
)
VTABLE_ADD_FUNC
(
ctype_char_do_widen
)
VTABLE_ADD_FUNC
(
ctype_char_do_widen_ch
)
VTABLE_ADD_FUNC
(
ctype_char__Do_widen_s
)
VTABLE_ADD_FUNC
(
ctype_char_do_narrow
)
VTABLE_ADD_FUNC
(
ctype_char_do_narrow_ch
)
VTABLE_ADD_FUNC
(
ctype_char__Do_narrow_s
));
VTABLE_ADD_FUNC
(
ctype_char_do_narrow_ch
));
__ASM_VTABLE
(
ctype_wchar
,
VTABLE_ADD_FUNC
(
ctype_wchar_do_is
)
VTABLE_ADD_FUNC
(
ctype_wchar_do_is_ch
)
...
...
@@ -8605,10 +8603,8 @@ void __asm_dummy_vtables(void) {
VTABLE_ADD_FUNC
(
ctype_wchar_do_toupper_ch
)
VTABLE_ADD_FUNC
(
ctype_wchar_do_widen
)
VTABLE_ADD_FUNC
(
ctype_wchar_do_widen_ch
)
VTABLE_ADD_FUNC
(
ctype_wchar__Do_widen_s
)
VTABLE_ADD_FUNC
(
ctype_wchar_do_narrow
)
VTABLE_ADD_FUNC
(
ctype_wchar_do_narrow_ch
)
VTABLE_ADD_FUNC
(
ctype_wchar__Do_narrow_s
));
VTABLE_ADD_FUNC
(
ctype_wchar_do_narrow_ch
));
__ASM_VTABLE
(
ctype_short
,
VTABLE_ADD_FUNC
(
ctype_wchar_do_is
)
VTABLE_ADD_FUNC
(
ctype_wchar_do_is_ch
)
...
...
@@ -8620,10 +8616,8 @@ void __asm_dummy_vtables(void) {
VTABLE_ADD_FUNC
(
ctype_wchar_do_toupper_ch
)
VTABLE_ADD_FUNC
(
ctype_wchar_do_widen
)
VTABLE_ADD_FUNC
(
ctype_wchar_do_widen_ch
)
VTABLE_ADD_FUNC
(
ctype_wchar__Do_widen_s
)
VTABLE_ADD_FUNC
(
ctype_wchar_do_narrow
)
VTABLE_ADD_FUNC
(
ctype_wchar_do_narrow_ch
)
VTABLE_ADD_FUNC
(
ctype_wchar__Do_narrow_s
));
VTABLE_ADD_FUNC
(
ctype_wchar_do_narrow_ch
));
__ASM_VTABLE
(
codecvt_base
,
VTABLE_ADD_FUNC
(
codecvt_base_do_always_noconv
)
VTABLE_ADD_FUNC
(
codecvt_base_do_max_length
)
...
...
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