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
42db7e4c
Commit
42db7e4c
authored
Sep 25, 2012
by
Nikolay Sivov
Committed by
Alexandre Julliard
Sep 25, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mlang: Forward GetRfc1766FromLcid() to IMultiLanguage3 implementation.
parent
55d87c05
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
12 deletions
+2
-12
mlang.c
dlls/mlang/mlang.c
+2
-12
No files found.
dlls/mlang/mlang.c
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
(
...
...
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