Commit 69b0b5e0 authored by Detlef Riekenberg's avatar Detlef Riekenberg Committed by Alexandre Julliard

mlang: Print a FIXME only for unused parameter.

parent aa389201
...@@ -3007,9 +3007,6 @@ exit: ...@@ -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( ...@@ -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);
} }
......
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