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

user32: Use BOOL type where appropriate.

parent e81412a4
...@@ -1100,7 +1100,8 @@ static HCURSOR CURSORICON_CreateIconFromANI( const BYTE *bits, DWORD bits_size, ...@@ -1100,7 +1100,8 @@ static HCURSOR CURSORICON_CreateIconFromANI( const BYTE *bits, DWORD bits_size,
ani_header header = {0}; ani_header header = {0};
BOOL use_seq = FALSE; BOOL use_seq = FALSE;
HCURSOR cursor = 0; HCURSOR cursor = 0;
UINT i, error = 0; UINT i;
BOOL error = FALSE;
HICON *frames; HICON *frames;
riff_chunk_t root_chunk = { bits_size, bits }; riff_chunk_t root_chunk = { bits_size, bits };
......
...@@ -4205,7 +4205,7 @@ typedef struct BroadcastParm ...@@ -4205,7 +4205,7 @@ typedef struct BroadcastParm
UINT msg; UINT msg;
WPARAM wp; WPARAM wp;
LPARAM lp; LPARAM lp;
DWORD success; BOOL success;
HWINSTA winsta; HWINSTA winsta;
} BroadcastParm; } BroadcastParm;
...@@ -4246,7 +4246,7 @@ static BOOL CALLBACK bcast_childwindow( HWND hw, LPARAM lp ) ...@@ -4246,7 +4246,7 @@ static BOOL CALLBACK bcast_childwindow( HWND hw, LPARAM lp )
return TRUE; return TRUE;
fail: fail:
parm->success = 0; parm->success = FALSE;
return FALSE; return FALSE;
} }
else if (parm->flags & BSF_POSTMESSAGE) else if (parm->flags & BSF_POSTMESSAGE)
......
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