Commit bdc9b147 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

user32: Use boolean return values in boolean functions.

parent c8426495
......@@ -266,7 +266,7 @@ BOOL WINAPI GetCursorInfo( PCURSORINFO pci )
{
BOOL ret;
if (!pci) return 0;
if (!pci) return FALSE;
SERVER_START_REQ( get_thread_input )
{
......
......@@ -360,7 +360,7 @@ BOOL WINAPI DrawCaptionTempW (HWND hwnd, HDC hdc, const RECT *rect, HFONT hFont,
if (uFlags & 0x2000)
FIXME("undocumented flag (0x2000)!\n");
return 0;
return FALSE;
}
......
......@@ -486,7 +486,7 @@ static BOOL CALLBACK dc_hook( HDC hDC, WORD code, DWORD_PTR data, LPARAM lParam
TRACE("hDC = %p, %u\n", hDC, code);
if (!dce) return 0;
if (!dce) return FALSE;
assert( dce->hdc == hDC );
switch( code )
......
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