mlang: Forward IsConvertible() to IMultiLanguage3 implementation.
This commit is contained in:
parent
76e12944ed
commit
55d87c050c
|
@ -2128,10 +2128,11 @@ static HRESULT WINAPI fnIMultiLanguage_GetCharsetInfo(
|
||||||
|
|
||||||
static HRESULT WINAPI fnIMultiLanguage_IsConvertible(
|
static HRESULT WINAPI fnIMultiLanguage_IsConvertible(
|
||||||
IMultiLanguage* iface,
|
IMultiLanguage* iface,
|
||||||
DWORD dwSrcEncoding,
|
DWORD src_enc,
|
||||||
DWORD dwDstEncoding)
|
DWORD dst_enc)
|
||||||
{
|
{
|
||||||
return IsConvertINetStringAvailable(dwSrcEncoding, dwDstEncoding);
|
MLang_impl *This = impl_from_IMultiLanguage( iface );
|
||||||
|
return IMultiLanguage3_IsConvertible(&This->IMultiLanguage3_iface, src_enc, dst_enc);
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI fnIMultiLanguage_ConvertString(
|
static HRESULT WINAPI fnIMultiLanguage_ConvertString(
|
||||||
|
|
Loading…
Reference in New Issue