imm32: Silence some unnecessary FIXMEs.

This commit is contained in:
Rémi Bernon 2023-05-26 17:52:40 +02:00 committed by Alexandre Julliard
parent 13e94072dd
commit 0e90213ed8
2 changed files with 4 additions and 14 deletions

View file

@ -396,7 +396,6 @@ static LRESULT ime_ui_notify( HIMC himc, HWND hwnd, WPARAM wparam, LPARAM lparam
case IMN_WINE_SET_COMP_STRING:
return ime_set_comp_string( himc, lparam );
default:
FIXME( "himc %p, hwnd %p, wparam %s, lparam %#Ix stub!\n", hwnd, himc, debugstr_imn(wparam), lparam );
return 0;
}
}
@ -503,8 +502,7 @@ BOOL WINAPI ImeSelect( HIMC himc, BOOL select )
BOOL WINAPI ImeSetActiveContext( HIMC himc, BOOL flag )
{
static int once;
if (!once++) FIXME( "himc %p, flag %#x stub!\n", himc, flag );
TRACE( "himc %p, flag %#x stub!\n", himc, flag );
return TRUE;
}
@ -661,9 +659,6 @@ BOOL WINAPI NotifyIME( HIMC himc, DWORD action, DWORD index, DWORD value )
}
NtUserNotifyIMEStatus( ctx->hWnd, ctx->fOpen );
break;
default:
FIXME( "himc %p, action %#lx, index %#lx, value %#lx stub!\n", himc, action, index, value );
break;
}
break;

View file

@ -2337,15 +2337,10 @@ BOOL WINAPI ImmRegisterWordW( HKL hkl, const WCHAR *readingW, DWORD style, const
/***********************************************************************
* ImmReleaseContext (IMM32.@)
*/
BOOL WINAPI ImmReleaseContext(HWND hWnd, HIMC hIMC)
BOOL WINAPI ImmReleaseContext( HWND hwnd, HIMC himc )
{
static BOOL shown = FALSE;
if (!shown) {
FIXME("(%p, %p): stub\n", hWnd, hIMC);
shown = TRUE;
}
return TRUE;
TRACE( "hwnd %p, himc %p\n", hwnd, himc );
return TRUE;
}
/***********************************************************************