diff options
Diffstat (limited to 'libc/inc')
-rw-r--r-- | libc/inc/sys.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/libc/inc/sys.h b/libc/inc/sys.h index 77a8069..ebb3836 100644 --- a/libc/inc/sys.h +++ b/libc/inc/sys.h @@ -4,6 +4,9 @@ #ifndef SYS_H #define SYS_H +#define KEYBOARD_MAGIC 0x555555 +#define MOUSE_MAGIC 0xaaaaaa + enum sys { SYS_LOOP, // To infinity and beyond (debug)! SYS_MALLOC, // Allocate memory @@ -27,6 +30,21 @@ struct message { void *data; }; +struct event_keyboard { + int magic; + int press; + int scancode; +}; + +struct event_mouse { + int magic; + int diff_x; + int diff_y; + int but1; + int but2; + int but3; +}; + #if defined(userspace) int sys0(enum sys num); |