mlang: Print a FIXME only for unused parameter.
This commit is contained in:
parent
aa389201e5
commit
69b0b5e096
|
@ -3007,9 +3007,6 @@ exit:
|
||||||
return hr;
|
return hr;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* TODO: handle dwFlag and lpFallBack
|
|
||||||
*/
|
|
||||||
static HRESULT WINAPI fnIMultiLanguage2_ConvertStringToUnicodeEx(
|
static HRESULT WINAPI fnIMultiLanguage2_ConvertStringToUnicodeEx(
|
||||||
IMultiLanguage3* iface,
|
IMultiLanguage3* iface,
|
||||||
DWORD* pdwMode,
|
DWORD* pdwMode,
|
||||||
|
@ -3021,7 +3018,10 @@ static HRESULT WINAPI fnIMultiLanguage2_ConvertStringToUnicodeEx(
|
||||||
DWORD dwFlag,
|
DWORD dwFlag,
|
||||||
WCHAR* lpFallBack)
|
WCHAR* lpFallBack)
|
||||||
{
|
{
|
||||||
FIXME("\n");
|
if (dwFlag || lpFallBack)
|
||||||
|
FIXME("Ignoring dwFlag (0x%x/%d) and lpFallBack (%p)\n",
|
||||||
|
dwFlag, dwFlag, lpFallBack);
|
||||||
|
|
||||||
return ConvertINetMultiByteToUnicode(pdwMode, dwEncoding,
|
return ConvertINetMultiByteToUnicode(pdwMode, dwEncoding,
|
||||||
pSrcStr, (LPINT)pcSrcSize, pDstStr, (LPINT)pcDstSize);
|
pSrcStr, (LPINT)pcSrcSize, pDstStr, (LPINT)pcDstSize);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue