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
34d94718
Commit
34d94718
authored
13 years ago
by
Piotr Caban
Committed by
Alexandre Julliard
13 years ago
Browse files
Options
Downloads
Patches
Plain Diff
msvcp90: Added _Getcoll implementation.
parent
bff3f0cd
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 @
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 */
...
...
This diff is collapsed.
Click to expand it.
dlls/msvcp90/msvcp90.spec
+
1
−
1
View file @
34d94718
...
...
@@ -5750,7 +5750,7 @@
@ stub _FSinh
@ extern _FSnan
# extern _FXbig
@
stub
_Getcoll
@
cdecl
_Getcoll
()
@ stub _Getctype
@ stub _Getcvt
@ stub _Getdateorder
...
...
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