aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ginput/touch/Linux-Event/gmouse_lld_linux_event.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/ginput/touch/Linux-Event/gmouse_lld_linux_event.c')
-rw-r--r--drivers/ginput/touch/Linux-Event/gmouse_lld_linux_event.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/ginput/touch/Linux-Event/gmouse_lld_linux_event.c b/drivers/ginput/touch/Linux-Event/gmouse_lld_linux_event.c
index e1989e03..d1aad3ba 100644
--- a/drivers/ginput/touch/Linux-Event/gmouse_lld_linux_event.c
+++ b/drivers/ginput/touch/Linux-Event/gmouse_lld_linux_event.c
@@ -31,7 +31,7 @@ typedef struct privStruct {
GMouseReading lastReading;
} privStruct;
-static bool_t _init(GMouse* m, unsigned driverInstance)
+static gBool _init(GMouse* m, unsigned driverInstance)
{
(void)driverInstance;
@@ -42,7 +42,7 @@ static bool_t _init(GMouse* m, unsigned driverInstance)
priv->fd = open(GMOUSE_LINUX_EVENT_DEVICE, O_RDONLY | O_NONBLOCK);
if (priv->fd < 0) {
fprintf(stderr, "GINPUT Mouse: Cannot open input device (%s)\n", GMOUSE_LINUX_EVENT_DEVICE);
- return FALSE;
+ return gFalse;
}
// Initialize
@@ -51,10 +51,10 @@ static bool_t _init(GMouse* m, unsigned driverInstance)
priv->lastReading.y = 0;
priv->lastReading.z = 0;
- return TRUE;
+ return gTrue;
}
-static bool_t _read(GMouse* m, GMouseReading* pdr)
+static gBool _read(GMouse* m, GMouseReading* pdr)
{
int i;
int rb;
@@ -97,7 +97,7 @@ static bool_t _read(GMouse* m, GMouseReading* pdr)
priv->lastReading.z = pdr->z;
priv->lastReading.buttons = pdr->buttons;
- return TRUE;
+ return gTrue;
}
const GMouseVMT const GMOUSE_DRIVER_VMT[1] = {{