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
34d94718
Commit
34d94718
authored
Dec 06, 2011
by
Piotr Caban
Committed by
Alexandre Julliard
Dec 06, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp90: Added _Getcoll implementation.
parent
bff3f0cd
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 @
34d94718
...
...
@@ -846,14 +846,26 @@ _Locinfo* __thiscall _Locinfo__Addcats(_Locinfo *this, int category, const char
return
_Locinfo__Locinfo_Addcats
(
this
,
category
,
locstr
);
}
/* _Getcoll */
_Collvec
__cdecl
_Getcoll
(
void
)
{
_Collvec
ret
;
_locale_t
locale
=
_get_current_locale
();
TRACE
(
"
\n
"
);
ret
.
page
=
locale
->
locinfo
->
lc_collate_cp
;
ret
.
handle
=
locale
->
locinfo
->
lc_handle
[
LC_COLLATE
];
_free_locale
(
locale
);
return
ret
;
}
/* ?_Getcoll@_Locinfo@std@@QBE?AU_Collvec@@XZ */
/* ?_Getcoll@_Locinfo@std@@QEBA?AU_Collvec@@XZ */
DEFINE_THISCALL_WRAPPER
(
_Locinfo__Getcoll
,
4
)
_Collvec
__thiscall
_Locinfo__Getcoll
(
const
_Locinfo
*
this
)
{
_Collvec
ret
=
{
0
};
/* FIXME */
FIXME
(
"(%p) stub
\n
"
,
this
);
return
ret
;
return
_Getcoll
();
}
/* ?_Getctype@_Locinfo@std@@QBE?AU_Ctypevec@@XZ */
...
...
dlls/msvcp90/msvcp90.spec
View file @
34d94718
...
...
@@ -5750,7 +5750,7 @@
@ stub _FSinh
@ extern _FSnan
# extern _FXbig
@
stub _Getcoll
@
cdecl _Getcoll()
@ stub _Getctype
@ stub _Getcvt
@ stub _Getdateorder
...
...
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