Commit 8f77dd8a authored by Austin English's avatar Austin English Committed by Alexandre Julliard

imm32: Quiet ImmGetOpenStatus fixme.

parent 541d7a5a
......@@ -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;
}
......
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