mlang: Forward ConvertStringToUnicode() to IMultiLanguage3 implementation.

This commit is contained in:
Nikolay Sivov 2012-09-26 17:41:39 +04:00 committed by Alexandre Julliard
parent 9f16a0883d
commit c8c624a9c3
1 changed files with 9 additions and 8 deletions

View File

@ -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(