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

winejoystick.drv: Use BOOL type where appropriate.

parent 299edf32
...@@ -78,7 +78,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(joystick); ...@@ -78,7 +78,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(joystick);
typedef struct tagWINE_JSTCK { typedef struct tagWINE_JSTCK {
int joyIntf; int joyIntf;
int in_use; BOOL in_use;
/* Some extra info we need to make this actually work under the /* Some extra info we need to make this actually work under the
Linux 2.2 event api. Linux 2.2 event api.
First of all, we cannot keep closing and reopening the device file - First of all, we cannot keep closing and reopening the device file -
...@@ -129,7 +129,7 @@ static LRESULT JSTCK_drvOpen(LPSTR str, DWORD dwIntf) ...@@ -129,7 +129,7 @@ static LRESULT JSTCK_drvOpen(LPSTR str, DWORD dwIntf)
return 0; return 0;
JSTCK_Data[dwIntf].joyIntf = dwIntf; JSTCK_Data[dwIntf].joyIntf = dwIntf;
JSTCK_Data[dwIntf].in_use = 1; JSTCK_Data[dwIntf].in_use = TRUE;
return (LRESULT)&JSTCK_Data[dwIntf]; return (LRESULT)&JSTCK_Data[dwIntf];
} }
...@@ -142,7 +142,7 @@ static LRESULT JSTCK_drvClose(DWORD_PTR dwDevID) ...@@ -142,7 +142,7 @@ static LRESULT JSTCK_drvClose(DWORD_PTR dwDevID)
if (jstck == NULL) if (jstck == NULL)
return 0; return 0;
jstck->in_use = 0; jstck->in_use = FALSE;
if (jstck->dev > 0) if (jstck->dev > 0)
{ {
close(jstck->dev); close(jstck->dev);
......
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