mlang: Print a FIXME only for unused parameter.

This commit is contained in:
Detlef Riekenberg 2010-01-07 00:47:07 +01:00 committed by Alexandre Julliard
parent aa389201e5
commit 69b0b5e096
1 changed files with 4 additions and 4 deletions

View File

@ -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);
} }