Commit bf34d0c3 authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

imm32: Use BOOL type where appropriate.

parent 387289e5
...@@ -2086,11 +2086,11 @@ BOOL WINAPI ImmRegisterWordW( ...@@ -2086,11 +2086,11 @@ BOOL WINAPI ImmRegisterWordW(
*/ */
BOOL WINAPI ImmReleaseContext(HWND hWnd, HIMC hIMC) BOOL WINAPI ImmReleaseContext(HWND hWnd, HIMC hIMC)
{ {
static int shown = 0; static BOOL shown = FALSE;
if (!shown) { if (!shown) {
FIXME("(%p, %p): stub\n", hWnd, hIMC); FIXME("(%p, %p): stub\n", hWnd, hIMC);
shown = 1; shown = TRUE;
} }
return TRUE; return TRUE;
} }
......
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