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
56c1c75b
Commit
56c1c75b
authored
13 years ago
by
Piotr Caban
Committed by
Alexandre Julliard
13 years ago
Browse files
Options
Downloads
Patches
Plain Diff
msvcp90: Added _Getcvt implementation.
parent
d30bfb6e
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dlls/msvcp90/locale.c
+15
-3
15 additions, 3 deletions
dlls/msvcp90/locale.c
dlls/msvcp90/msvcp90.spec
+1
-1
1 addition, 1 deletion
dlls/msvcp90/msvcp90.spec
with
16 additions
and
4 deletions
dlls/msvcp90/locale.c
+
15
−
3
View file @
56c1c75b
...
...
@@ -897,14 +897,26 @@ _Ctypevec __thiscall _Locinfo__Getctype(const _Locinfo *this)
return
_Getctype
();
}
/* _Getcvt */
_Cvtvec
__cdecl
_Getcvt
(
void
)
{
_Cvtvec
ret
;
_locale_t
locale
=
_get_current_locale
();
TRACE
(
"
\n
"
);
ret
.
page
=
locale
->
locinfo
->
lc_codepage
;
ret
.
handle
=
locale
->
locinfo
->
lc_handle
[
LC_CTYPE
];
_free_locale
(
locale
);
return
ret
;
}
/* ?_Getcvt@_Locinfo@std@@QBE?AU_Cvtvec@@XZ */
/* ?_Getcvt@_Locinfo@std@@QEBA?AU_Cvtvec@@XZ */
DEFINE_THISCALL_WRAPPER
(
_Locinfo__Getcvt
,
4
)
_Cvtvec
__thiscall
_Locinfo__Getcvt
(
const
_Locinfo
*
this
)
{
_Cvtvec
ret
=
{
0
};
/* FIXME */
FIXME
(
"(%p) stub
\n
"
,
this
);
return
ret
;
return
_Getcvt
();
}
/* ?_Getdateorder@_Locinfo@std@@QBEHXZ */
...
...
This diff is collapsed.
Click to expand it.
dlls/msvcp90/msvcp90.spec
+
1
−
1
View file @
56c1c75b
...
...
@@ -5752,7 +5752,7 @@
# extern _FXbig
@ cdecl _Getcoll()
@ cdecl _Getctype()
@
stub
_Getcvt
@
cdecl
_Getcvt
()
@ stub _Getdateorder
@ stub _Getwctype
@ stub _Getwctypes
...
...
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