diff options
author | Marvin Borner | 2021-02-17 22:13:59 +0100 |
---|---|---|
committer | Marvin Borner | 2021-02-18 18:03:43 +0100 |
commit | e28ea65105c4afd3a3dea7d050b392565d15120d (patch) | |
tree | f3c1eaf8c4da5d71893355db1779d73d98f68d2f /libc/inc/sys.h | |
parent | b32cb0a22db893c106cb86ca0f1178d5da05b551 (diff) |
Started GUI rewrite
It's a mess right now..
Diffstat (limited to 'libc/inc/sys.h')
-rw-r--r-- | libc/inc/sys.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/inc/sys.h b/libc/inc/sys.h index aead212..be4352f 100644 --- a/libc/inc/sys.h +++ b/libc/inc/sys.h @@ -29,13 +29,13 @@ enum sys { }; struct event_keyboard { - int magic; + u32 magic; int press; int scancode; }; struct event_mouse { - int magic; + u32 magic; int diff_x; int diff_y; int but1; |