aboutsummaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorMarvin Borner2021-04-26 00:43:59 +0200
committerMarvin Borner2021-04-26 00:43:59 +0200
commit6b71accbaf4be52a1e2d3a696675c5e610a4c9b3 (patch)
tree4f2aa853d0bbcca23ad51c0a5d76278c536f83c9 /libs
parent0fe14a1ff936c38ab9aa7f85219d0c155d276823 (diff)
Added VMMouse support and improved PS/2 mouse
Diffstat (limited to 'libs')
-rw-r--r--libs/libc/inc/sys.h14
1 files changed, 9 insertions, 5 deletions
diff --git a/libs/libc/inc/sys.h b/libs/libc/inc/sys.h
index 8c8e217..f65e020 100644
--- a/libs/libc/inc/sys.h
+++ b/libs/libc/inc/sys.h
@@ -6,6 +6,7 @@
#include <def.h>
#include <errno.h>
+#include <vec.h>
#define KEYBOARD_MAGIC 0x555555
#define MOUSE_MAGIC 0xaaaaaa
@@ -64,11 +65,14 @@ struct event_keyboard {
struct event_mouse {
u32 magic;
- s32 diff_x;
- s32 diff_y;
- u8 but1;
- u8 but2;
- u8 but3;
+ vec2 pos;
+ u8 rel; // 1 rel, 0 abs
+ s8 scroll; // Dir: -1 neg, +1 pos
+ struct {
+ u8 left : 1;
+ u8 right : 1;
+ u8 middle : 1;
+ } but;
};
struct stat {