From 59fda8c17654aa63916e04b4cc061ac172774a98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= Date: Sun, 26 Sep 2004 22:34:57 +0000 Subject: [PATCH] change the mouse io struct git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9064 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/input/kb_mouse_driver.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/headers/private/input/kb_mouse_driver.h b/headers/private/input/kb_mouse_driver.h index 060bafdba6..5365cf9ded 100644 --- a/headers/private/input/kb_mouse_driver.h +++ b/headers/private/input/kb_mouse_driver.h @@ -104,15 +104,15 @@ typedef struct { #define mouse_settings_file "Mouse_settings" typedef struct { - int serial_cookie; - int buttons; - int xdelta; - int ydelta; - int32 clicks; - int32 modifiers; - bigtime_t time; - int wheel_delta; -} mouse_pos; + int32 cookie; + uint32 buttons; + int32 xdelta; + int32 ydelta; + int32 clicks; + int32 modifiers; + bigtime_t timestamp; + int32 wheel_delta; +} mouse_movement; // On the Mac, the I-squared C bus is controlled by the Cuda microcontroller,