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
7fe26a95
Commit
7fe26a95
authored
Sep 27, 2012
by
Nikolay Sivov
Committed by
Alexandre Julliard
Sep 28, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mlang: Forward GetLcidFromRfc1766() to IMultiLanguage3 implementation.
parent
effdcf98
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
18 deletions
+4
-18
mlang.c
dlls/mlang/mlang.c
+4
-18
No files found.
dlls/mlang/mlang.c
View file @
7fe26a95
...
...
@@ -2195,25 +2195,11 @@ static HRESULT WINAPI fnIMultiLanguage_GetRfc1766FromLcid(
static
HRESULT
WINAPI
fnIMultiLanguage_GetLcidFromRfc1766
(
IMultiLanguage
*
iface
,
LCID
*
pL
ocale
,
BSTR
bstrR
fc1766
)
LCID
*
l
ocale
,
BSTR
r
fc1766
)
{
HRESULT
hr
;
IEnumRfc1766
*
rfc1766
;
TRACE
(
"%p %p %s
\n
"
,
iface
,
pLocale
,
debugstr_w
(
bstrRfc1766
));
if
(
!
pLocale
||
!
bstrRfc1766
)
return
E_INVALIDARG
;
hr
=
IMultiLanguage_EnumRfc1766
(
iface
,
&
rfc1766
);
if
(
FAILED
(
hr
))
return
hr
;
hr
=
lcid_from_rfc1766
(
rfc1766
,
pLocale
,
bstrRfc1766
);
IEnumRfc1766_Release
(
rfc1766
);
return
hr
;
MLang_impl
*
This
=
impl_from_IMultiLanguage
(
iface
);
return
IMultiLanguage3_GetLcidFromRfc1766
(
&
This
->
IMultiLanguage3_iface
,
locale
,
rfc1766
);
}
/******************************************************************************/
...
...
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