imm32: Quiet ImmGetOpenStatus fixme.

This commit is contained in:
Austin English 2010-04-09 10:56:41 -05:00 committed by Alexandre Julliard
parent 541d7a5ab2
commit 8f77dd8aff

View file

@ -1643,10 +1643,15 @@ UINT WINAPI ImmGetIMEFileNameW(HKL hKL, LPWSTR lpszFileName, UINT uBufLen)
BOOL WINAPI ImmGetOpenStatus(HIMC hIMC)
{
InputContextData *data = hIMC;
static int i;
if (!data)
return FALSE;
FIXME("(%p): semi-stub\n", hIMC);
TRACE("(%p): semi-stub\n", hIMC);
if (!i++)
FIXME("(%p): semi-stub\n", hIMC);
return data->IMC.fOpen;
}