Commit 031f3ca1 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

mlang: Implement get source/dest codepages for IMLangConvertCharset.

parent ed42bf08
......@@ -3632,15 +3632,21 @@ static HRESULT WINAPI MLangConvertCharset_Initialize(IMLangConvertCharset *iface
static HRESULT WINAPI MLangConvertCharset_GetSourceCodePage(IMLangConvertCharset *iface, UINT *src_cp)
{
struct convert_charset *This = impl_from_IMLangConvertCharset(iface);
FIXME("(%p)->(%p): stub\n", This, src_cp);
return E_NOTIMPL;
TRACE("(%p)->(%p)\n", This, src_cp);
*src_cp = This->src_cp;
return S_OK;
}
static HRESULT WINAPI MLangConvertCharset_GetDestinationCodePage(IMLangConvertCharset *iface, UINT *dst_cp)
{
struct convert_charset *This = impl_from_IMLangConvertCharset(iface);
FIXME("(%p)->(%p): stub\n", This, dst_cp);
return E_NOTIMPL;
TRACE("(%p)->(%p)\n", This, dst_cp);
*dst_cp = This->dst_cp;
return S_OK;
}
static HRESULT WINAPI MLangConvertCharset_GetProperty(IMLangConvertCharset *iface, DWORD *prop)
......
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