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

shell32/tests: Use BOOL type where appropriate.

parent eafb3d8f
...@@ -106,7 +106,7 @@ static void flush_sequences(struct msg_sequence **seq, int n) ...@@ -106,7 +106,7 @@ static void flush_sequences(struct msg_sequence **seq, int n)
} }
static void ok_sequence_(struct msg_sequence **seq, int sequence_index, static void ok_sequence_(struct msg_sequence **seq, int sequence_index,
const struct message *expected, const char *context, int todo, const struct message *expected, const char *context, BOOL todo,
const char *file, int line) const char *file, int line)
{ {
struct msg_sequence *msg_seq = seq[sequence_index]; struct msg_sequence *msg_seq = seq[sequence_index];
......
...@@ -363,7 +363,7 @@ static void DdeExecuteCommand(DWORD instance, HCONV hConv, const char *strCmd, H ...@@ -363,7 +363,7 @@ static void DdeExecuteCommand(DWORD instance, HCONV hConv, const char *strCmd, H
* window creation happened were not encouraging (not including * window creation happened were not encouraging (not including
* SetWindowsHookEx). * SetWindowsHookEx).
*/ */
static void CheckWindowCreated(const char *winName, int closeWindow, int testParams) static void CheckWindowCreated(const char *winName, BOOL closeWindow, int testParams)
{ {
HWND window = NULL; HWND window = NULL;
int i; int i;
...@@ -387,7 +387,7 @@ static void CheckWindowCreated(const char *winName, int closeWindow, int testPar ...@@ -387,7 +387,7 @@ static void CheckWindowCreated(const char *winName, int closeWindow, int testPar
/* Check for Existence (or non-existence) of a file or group /* Check for Existence (or non-existence) of a file or group
* When testing for existence of a group, groupName is not needed * When testing for existence of a group, groupName is not needed
*/ */
static void CheckFileExistsInProgramGroups(const char *nameToCheck, int shouldExist, int isGroup, static void CheckFileExistsInProgramGroups(const char *nameToCheck, BOOL shouldExist, BOOL isGroup,
const char *groupName, int testParams) const char *groupName, int testParams)
{ {
char path[MAX_PATH]; char path[MAX_PATH];
...@@ -469,7 +469,7 @@ static void CreateGroupTest(DWORD instance, HCONV hConv, const char *command, UI ...@@ -469,7 +469,7 @@ static void CreateGroupTest(DWORD instance, HCONV hConv, const char *command, UI
* 1. window is open * 1. window is open
*/ */
static void ShowGroupTest(DWORD instance, HCONV hConv, const char *command, UINT expected_result, static void ShowGroupTest(DWORD instance, HCONV hConv, const char *command, UINT expected_result,
const char *groupName, const char *windowTitle, int closeAfterShowing, int testParams) const char *groupName, const char *windowTitle, BOOL closeAfterShowing, int testParams)
{ {
HDDEDATA hData; HDDEDATA hData;
UINT error; UINT error;
......
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