Commit 97e30dfe authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

mlang: Implement IMLangConvertCharset_DoConversionFromUnicode().

parent b8228aaf
......@@ -3627,8 +3627,8 @@ static HRESULT WINAPI MLangConvertCharset_DoConversionFromUnicode(IMLangConvertC
WCHAR *src, UINT *src_size, CHAR *dest, UINT *dest_size)
{
struct convert_charset *This = impl_from_IMLangConvertCharset(iface);
FIXME("(%p)->(%p %p %p %p): stub\n", This, src, src_size, dest, dest_size);
return E_NOTIMPL;
TRACE("(%p)->(%p %p %p %p)\n", This, src, src_size, dest, dest_size);
return ConvertINetUnicodeToMultiByte(NULL, This->dst_cp, src, (INT*)src_size, dest, (INT*)dest_size);
}
static const IMLangConvertCharsetVtbl MLangConvertCharsetVtbl =
......
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