Skip to content
Snippets Groups Projects
Commit 031f3ca1 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard
Browse files

mlang: Implement get source/dest codepages for IMLangConvertCharset.

parent ed42bf08
Branches
Tags
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment