Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
56c1c75b
Commit
56c1c75b
authored
Dec 08, 2011
by
Piotr Caban
Committed by
Alexandre Julliard
Dec 08, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp90: Added _Getcvt implementation.
parent
d30bfb6e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
4 deletions
+16
-4
locale.c
dlls/msvcp90/locale.c
+15
-3
msvcp90.spec
dlls/msvcp90/msvcp90.spec
+1
-1
No files found.
dlls/msvcp90/locale.c
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 */
...
...
dlls/msvcp90/msvcp90.spec
View file @
56c1c75b
...
...
@@ -5752,7 +5752,7 @@
# extern _FXbig
@ cdecl _Getcoll()
@ cdecl _Getctype()
@
stub _Getcvt
@
cdecl _Getcvt()
@ stub _Getdateorder
@ stub _Getwctype
@ stub _Getwctypes
...
...
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