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

mlang: Forward GetNumberOfCodePageInfo() to IMultiLanguage3 implementation.

parent fdaf6df6
......@@ -2064,16 +2064,11 @@ static ULONG WINAPI fnIMultiLanguage_Release( IMultiLanguage* iface )
static HRESULT WINAPI fnIMultiLanguage_GetNumberOfCodePageInfo(
IMultiLanguage* iface,
UINT* pcCodePage)
UINT* cp)
{
MLang_impl *This = impl_from_IMultiLanguage( iface );
TRACE("(%p, %p)\n", This, pcCodePage);
if (!pcCodePage) return E_INVALIDARG;
*pcCodePage = This->total_cp;
return S_OK;
TRACE("(%p, %p)\n", This, cp);
return IMultiLanguage3_GetNumberOfCodePageInfo(&This->IMultiLanguage3_iface, cp);
}
static HRESULT WINAPI fnIMultiLanguage_GetCodePageInfo(
......
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