Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lorenzo Ferrillo
wine
Commits
330b042f
Commit
330b042f
authored
13 years ago
by
Piotr Caban
Committed by
Alexandre Julliard
13 years ago
Browse files
Options
Downloads
Patches
Plain Diff
msvcp90: Added numpunct<char> class implementation.
parent
8a8d5cd3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dlls/msvcp90/locale.c
+36
-23
36 additions, 23 deletions
dlls/msvcp90/locale.c
with
36 additions
and
23 deletions
dlls/msvcp90/locale.c
+
36
−
23
View file @
330b042f
...
...
@@ -2592,10 +2592,12 @@ MSVCP_size_t __cdecl numpunct_char__Getcat(const locale_facet **facet, const loc
/* ?do_decimal_point@?$numpunct@D@std@@MBEDXZ */
/* ?do_decimal_point@?$numpunct@D@std@@MEBADXZ */
DEFINE_THISCALL_WRAPPER
(
numpunct_char_do_decimal_point
,
4
)
#define call_numpunct_char_do_decimal_point(this) CALL_VTBL_FUNC(this, 4, \
char, (const numpunct_char *this), (this))
char
__thiscall
numpunct_char_do_decimal_point
(
const
numpunct_char
*
this
)
{
FIXM
E
(
"(%p)
stub
\n
"
,
this
);
return
0
;
TRAC
E
(
"(%p)
\n
"
,
this
);
return
this
->
dp
;
}
/* ?decimal_point@?$numpunct@D@std@@QBEDXZ */
...
...
@@ -2603,17 +2605,19 @@ char __thiscall numpunct_char_do_decimal_point(const numpunct_char *this)
DEFINE_THISCALL_WRAPPER
(
numpunct_char_decimal_point
,
4
)
char
__thiscall
numpunct_char_decimal_point
(
const
numpunct_char
*
this
)
{
FIXM
E
(
"(%p)
stub
\n
"
,
this
);
return
0
;
TRAC
E
(
"(%p)
\n
"
,
this
);
return
call_numpunct_char_do_decimal_point
(
this
)
;
}
/* ?do_thousands_sep@?$numpunct@D@std@@MBEDXZ */
/* ?do_thousands_sep@?$numpunct@D@std@@MEBADXZ */
DEFINE_THISCALL_WRAPPER
(
numpunct_char_do_thousands_sep
,
4
)
#define call_numpunct_char_do_thousands_sep(this) CALL_VTBL_FUNC(this, 8, \
char, (const numpunct_char*), (this))
char
__thiscall
numpunct_char_do_thousands_sep
(
const
numpunct_char
*
this
)
{
FIXM
E
(
"(%p)
stub
\n
"
,
this
);
return
0
;
TRAC
E
(
"(%p)
\n
"
,
this
);
return
this
->
sep
;
}
/* ?thousands_sep@?$numpunct@D@std@@QBEDXZ */
...
...
@@ -2621,17 +2625,20 @@ char __thiscall numpunct_char_do_thousands_sep(const numpunct_char *this)
DEFINE_THISCALL_WRAPPER
(
numpunct_char_thousands_sep
,
4
)
char
__thiscall
numpunct_char_thousands_sep
(
const
numpunct_char
*
this
)
{
FIXM
E
(
"(%p)
stub
\n
"
,
this
);
return
0
;
TRAC
E
(
"(%p)
\n
"
,
this
);
return
call_numpunct_char_do_thousands_sep
(
this
)
;
}
/* ?do_grouping@?$numpunct@D@std@@MBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ */
/* ?do_grouping@?$numpunct@D@std@@MEBA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ */
DEFINE_THISCALL_WRAPPER
(
numpunct_char_do_grouping
,
8
)
basic_string_char
*
__thiscall
numpunct_char_do_grouping
(
const
numpunct_char
*
this
,
basic_string_char
*
ret
)
#define call_numpunct_char_do_grouping(this, ret) CALL_VTBL_FUNC(this, 12, \
basic_string_char*, (const numpunct_char*, basic_string_char*), (this, ret))
basic_string_char
*
__thiscall
numpunct_char_do_grouping
(
const
numpunct_char
*
this
,
basic_string_char
*
ret
)
{
FIXM
E
(
"(%p)
stub
\n
"
,
this
);
return
ret
;
TRAC
E
(
"(%p)
\n
"
,
this
);
return
MSVCP_basic_string_char_ctor_cstr
(
ret
,
this
->
grouping
)
;
}
/* ?grouping@?$numpunct@D@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ */
...
...
@@ -2639,17 +2646,20 @@ basic_string_char* __thiscall numpunct_char_do_grouping(const numpunct_char *thi
DEFINE_THISCALL_WRAPPER
(
numpunct_char_grouping
,
8
)
basic_string_char
*
__thiscall
numpunct_char_grouping
(
const
numpunct_char
*
this
,
basic_string_char
*
ret
)
{
FIXM
E
(
"(%p)
stub
\n
"
,
this
);
return
ret
;
TRAC
E
(
"(%p)
\n
"
,
this
);
return
call_numpunct_char_do_grouping
(
this
,
ret
)
;
}
/* ?do_falsename@?$numpunct@D@std@@MBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ */
/* ?do_falsename@?$numpunct@D@std@@MEBA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ */
DEFINE_THISCALL_WRAPPER
(
numpunct_char_do_falsename
,
8
)
basic_string_char
*
__thiscall
numpunct_char_do_falsename
(
const
numpunct_char
*
this
,
basic_string_char
*
ret
)
#define call_numpunct_char_do_falsename(this, ret) CALL_VTBL_FUNC(this, 16, \
basic_string_char*, (const numpunct_char*, basic_string_char*), (this, ret))
basic_string_char
*
__thiscall
numpunct_char_do_falsename
(
const
numpunct_char
*
this
,
basic_string_char
*
ret
)
{
FIXM
E
(
"(%p)
stub
\n
"
,
this
);
return
ret
;
TRAC
E
(
"(%p)
\n
"
,
this
);
return
MSVCP_basic_string_char_ctor_cstr
(
ret
,
this
->
false_name
)
;
}
/* ?falsename@?$numpunct@D@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ */
...
...
@@ -2657,17 +2667,20 @@ basic_string_char* __thiscall numpunct_char_do_falsename(const numpunct_char *th
DEFINE_THISCALL_WRAPPER
(
numpunct_char_falsename
,
8
)
basic_string_char
*
__thiscall
numpunct_char_falsename
(
const
numpunct_char
*
this
,
basic_string_char
*
ret
)
{
FIXM
E
(
"(%p)
stub
\n
"
,
this
);
return
ret
;
TRAC
E
(
"(%p)
\n
"
,
this
);
return
call_numpunct_char_do_falsename
(
this
,
ret
)
;
}
/* ?do_truename@?$numpunct@D@std@@MBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ */
/* ?do_truename@?$numpunct@D@std@@MEBA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ */
DEFINE_THISCALL_WRAPPER
(
numpunct_char_do_truename
,
8
)
basic_string_char
*
__thiscall
numpunct_char_do_truename
(
const
numpunct_char
*
this
,
basic_string_char
*
ret
)
#define call_numpunct_char_do_truename(this, ret) CALL_VTBL_FUNC(this, 20, \
basic_string_char*, (const numpunct_char*, basic_string_char*), (this, ret))
basic_string_char
*
__thiscall
numpunct_char_do_truename
(
const
numpunct_char
*
this
,
basic_string_char
*
ret
)
{
FIXM
E
(
"(%p)
stub
\n
"
,
this
);
return
ret
;
TRAC
E
(
"(%p)
\n
"
,
this
);
return
MSVCP_basic_string_char_ctor_cstr
(
ret
,
this
->
true_name
)
;
}
/* ?truename@?$numpunct@D@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ */
...
...
@@ -2675,8 +2688,8 @@ basic_string_char* __thiscall numpunct_char_do_truename(const numpunct_char *thi
DEFINE_THISCALL_WRAPPER
(
numpunct_char_truename
,
8
)
basic_string_char
*
__thiscall
numpunct_char_truename
(
const
numpunct_char
*
this
,
basic_string_char
*
ret
)
{
FIXM
E
(
"(%p)
stub
\n
"
,
this
);
return
ret
;
TRAC
E
(
"(%p)
\n
"
,
this
);
return
call_numpunct_char_do_truename
(
this
,
ret
)
;
}
/* ?id@?$numpunct@_W@std@@2V0locale@2@A */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment