mlang: Forward GetFamilyCodePage() to IMultiLanguage3 implementation.
This commit is contained in:
parent
db1cd7eba8
commit
76e12944ed
|
@ -2098,10 +2098,11 @@ static HRESULT WINAPI fnIMultiLanguage_GetCodePageInfo(
|
||||||
|
|
||||||
static HRESULT WINAPI fnIMultiLanguage_GetFamilyCodePage(
|
static HRESULT WINAPI fnIMultiLanguage_GetFamilyCodePage(
|
||||||
IMultiLanguage* iface,
|
IMultiLanguage* iface,
|
||||||
UINT uiCodePage,
|
UINT cp,
|
||||||
UINT* puiFamilyCodePage)
|
UINT* family_cp)
|
||||||
{
|
{
|
||||||
return GetFamilyCodePage(uiCodePage, puiFamilyCodePage);
|
MLang_impl *This = impl_from_IMultiLanguage( iface );
|
||||||
|
return IMultiLanguage3_GetFamilyCodePage(&This->IMultiLanguage3_iface, cp, family_cp);
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI fnIMultiLanguage_EnumCodePages(
|
static HRESULT WINAPI fnIMultiLanguage_EnumCodePages(
|
||||||
|
|
Loading…
Reference in New Issue