From a96e9c4c858d47f61b89d879aa0ce6a02bdacb38 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 25 Mar 2021 15:08:35 +0100 Subject: Implemented window moving Really slow right now, need to optimize some stuff --- libc/inc/sys.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'libc/inc') diff --git a/libc/inc/sys.h b/libc/inc/sys.h index caa1dbd..19fb3ee 100644 --- a/libc/inc/sys.h +++ b/libc/inc/sys.h @@ -38,17 +38,17 @@ enum sys { struct event_keyboard { u32 magic; - int press; - int scancode; + u32 scancode; + u8 press; }; struct event_mouse { u32 magic; - int diff_x; - int diff_y; - int but1; - int but2; - int but3; + s32 diff_x; + s32 diff_y; + u8 but1; + u8 but2; + u8 but3; }; struct stat { -- cgit v1.2.3