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
42db7e4c
Commit
42db7e4c
authored
12 years ago
by
Nikolay Sivov
Committed by
Alexandre Julliard
12 years ago
Browse files
Options
Downloads
Patches
Plain Diff
mlang: Forward GetRfc1766FromLcid() to IMultiLanguage3 implementation.
parent
55d87c05
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dlls/mlang/mlang.c
+2
-12
2 additions, 12 deletions
dlls/mlang/mlang.c
with
2 additions
and
12 deletions
dlls/mlang/mlang.c
+
2
−
12
View file @
42db7e4c
...
...
@@ -2187,18 +2187,8 @@ static HRESULT WINAPI fnIMultiLanguage_GetRfc1766FromLcid(
LCID
lcid
,
BSTR
*
pbstrRfc1766
)
{
WCHAR
buf
[
MAX_RFC1766_NAME
];
TRACE
(
"%p %04x %p
\n
"
,
iface
,
lcid
,
pbstrRfc1766
);
if
(
!
pbstrRfc1766
)
return
E_INVALIDARG
;
if
(
!
lcid_to_rfc1766W
(
lcid
,
buf
,
MAX_RFC1766_NAME
))
{
*
pbstrRfc1766
=
SysAllocString
(
buf
);
return
S_OK
;
}
return
E_FAIL
;
MLang_impl
*
This
=
impl_from_IMultiLanguage
(
iface
);
return
IMultiLanguage3_GetRfc1766FromLcid
(
&
This
->
IMultiLanguage3_iface
,
lcid
,
pbstrRfc1766
);
}
static
HRESULT
WINAPI
fnIMultiLanguage_GetLcidFromRfc1766
(
...
...
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