imm32: Use BOOL type where appropriate.
This commit is contained in:
parent
387289e547
commit
bf34d0c3af
|
@ -2086,11 +2086,11 @@ BOOL WINAPI ImmRegisterWordW(
|
|||
*/
|
||||
BOOL WINAPI ImmReleaseContext(HWND hWnd, HIMC hIMC)
|
||||
{
|
||||
static int shown = 0;
|
||||
static BOOL shown = FALSE;
|
||||
|
||||
if (!shown) {
|
||||
FIXME("(%p, %p): stub\n", hWnd, hIMC);
|
||||
shown = 1;
|
||||
shown = TRUE;
|
||||
}
|
||||
return TRUE;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue