aboutsummaryrefslogtreecommitdiff
path: root/libc
diff options
context:
space:
mode:
authorMarvin Borner2021-03-25 15:08:35 +0100
committerMarvin Borner2021-03-25 15:08:35 +0100
commita96e9c4c858d47f61b89d879aa0ce6a02bdacb38 (patch)
treec8ba545b3bb75ac01b4239f1d0a1607298594e52 /libc
parentd2ddd2f279733ec382941b85acd8557cb8f61ec9 (diff)
Implemented window moving
Really slow right now, need to optimize some stuff
Diffstat (limited to 'libc')
-rw-r--r--libc/inc/sys.h14
1 files changed, 7 insertions, 7 deletions
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 {