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
8e700602
Commit
8e700602
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 ConvertStringFromUnicode() to IMultiLanguage3 implementation.
parent
7fe26a95
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
8 deletions
+9
-8
mlang.c
dlls/mlang/mlang.c
+9
-8
No files found.
dlls/mlang/mlang.c
View file @
8e700602
...
...
@@ -2166,15 +2166,16 @@ static HRESULT WINAPI fnIMultiLanguage_ConvertStringToUnicode(
static
HRESULT
WINAPI
fnIMultiLanguage_ConvertStringFromUnicode
(
IMultiLanguage
*
iface
,
DWORD
*
pdwM
ode
,
DWORD
dwE
ncoding
,
WCHAR
*
pSrcStr
,
UINT
*
pcSrcS
ize
,
CHAR
*
pDstStr
,
UINT
*
pcDstS
ize
)
DWORD
*
m
ode
,
DWORD
e
ncoding
,
WCHAR
*
src
,
UINT
*
src_s
ize
,
CHAR
*
dest
,
UINT
*
dest_s
ize
)
{
return
ConvertINetUnicodeToMultiByte
(
pdwMode
,
dwEncoding
,
pSrcStr
,
(
LPINT
)
pcSrcSize
,
pDstStr
,
(
LPINT
)
pcDstSize
);
MLang_impl
*
This
=
impl_from_IMultiLanguage
(
iface
);
return
IMultiLanguage3_ConvertStringFromUnicode
(
&
This
->
IMultiLanguage3_iface
,
mode
,
encoding
,
src
,
src_size
,
dest
,
dest_size
);
}
static
HRESULT
WINAPI
fnIMultiLanguage_ConvertStringReset
(
...
...
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