diff options
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/include/proto/keyboard.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/common/include/proto/keyboard.h b/src/common/include/proto/keyboard.h new file mode 100644 index 0000000..044946d --- /dev/null +++ b/src/common/include/proto/keyboard.h @@ -0,0 +1,20 @@ +#pragma once + +#include <stdint.h> +#include <stddef.h> + +typedef struct { + uint16_t scancode; + uint16_t type; +} kbd_event_t; + +#define KBD_EVENT_KEYRELEASE 0 +#define KBD_EVENT_KEYPRESS 1 + +#define IOCTL_KBD_SET_LEDS 10 + +#define KBD_LED_SCROLLLOCK 1 +#define KBD_LED_NUMLOCK 1 +#define KBD_LED_CAPSLOCK 4 + +/* vim: set ts=4 sw=4 tw=0 noet :*/ |