Commit c8c624a9 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

mlang: Forward ConvertStringToUnicode() to IMultiLanguage3 implementation.

parent 9f16a088
......@@ -2152,15 +2152,16 @@ static HRESULT WINAPI fnIMultiLanguage_ConvertString(
static HRESULT WINAPI fnIMultiLanguage_ConvertStringToUnicode(
IMultiLanguage* iface,
DWORD* pdwMode,
DWORD dwEncoding,
CHAR* pSrcStr,
UINT* pcSrcSize,
WCHAR* pDstStr,
UINT* pcDstSize)
DWORD* mode,
DWORD src_enc,
CHAR* src,
UINT* src_size,
WCHAR* dest,
UINT* dest_size)
{
return ConvertINetMultiByteToUnicode(pdwMode, dwEncoding,
(LPCSTR)pSrcStr, (LPINT)pcSrcSize, pDstStr, (LPINT)pcDstSize);
MLang_impl *This = impl_from_IMultiLanguage( iface );
return IMultiLanguage3_ConvertStringToUnicode(&This->IMultiLanguage3_iface,
mode, src_enc, src, src_size, dest, dest_size);
}
static HRESULT WINAPI fnIMultiLanguage_ConvertStringFromUnicode(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment