diff options
author | Alex Auvolat <alex@adnab.me> | 2015-03-11 16:22:40 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2015-03-11 16:22:40 +0100 |
commit | 9b9ef5a2c0ec8e66c7da24c4229d89a90a10e914 (patch) | |
tree | 471cb88f003eb58ce84342f2e7ab7effda04ce2d /src/common/include/proto | |
parent | a7ff74cdf2835625282491242ede57b05ceaa782 (diff) | |
download | kogata-9b9ef5a2c0ec8e66c7da24c4229d89a90a10e914.tar.gz kogata-9b9ef5a2c0ec8e66c7da24c4229d89a90a10e914.zip |
Bugfixing in progress. Strange bug: wait_on adds to waiters but later not in waiters.
Diffstat (limited to 'src/common/include/proto')
-rw-r--r-- | src/common/include/proto/keyboard.h | 40 |
1 files changed, 39 insertions, 1 deletions
diff --git a/src/common/include/proto/keyboard.h b/src/common/include/proto/keyboard.h index 044946d..8d9543f 100644 --- a/src/common/include/proto/keyboard.h +++ b/src/common/include/proto/keyboard.h @@ -14,7 +14,45 @@ typedef struct { #define IOCTL_KBD_SET_LEDS 10 #define KBD_LED_SCROLLLOCK 1 -#define KBD_LED_NUMLOCK 1 +#define KBD_LED_NUMLOCK 2 #define KBD_LED_CAPSLOCK 4 +#define KBD_CODE_ESC 1 +#define KBD_CODE_RETURN 28 +#define KBD_CODE_BKSP 14 +#define KBD_CODE_UP 200 +#define KBD_CODE_DOWN 208 +#define KBD_CODE_LEFT 203 +#define KBD_CODE_RIGHT 205 +#define KBD_CODE_HOME 199 +#define KBD_CODE_END 207 +#define KBD_CODE_PGUP 201 +#define KBD_CODE_PGDOWN 209 + +#define KBD_CODE_LSHIFT 42 +#define KBD_CODE_RSHIFT 54 +#define KBD_CODE_CAPSLOCK 58 +#define KBD_CODE_LCTRL 29 +#define KBD_CODE_RCTRL 157 +#define KBD_CODE_LALT 56 +#define KBD_CODE_RALT 184 +#define KBD_CODE_SUPER 219 +#define KBD_CODE_MENU 221 +#define KBD_CODE_TAB 15 +#define KBD_CODE_INS 210 +#define KBD_CODE_DEL 211 + +#define KBD_CODE_F1 59 +#define KBD_CODE_F2 60 +#define KBD_CODE_F3 61 +#define KBD_CODE_F4 62 +#define KBD_CODE_F5 63 +#define KBD_CODE_F6 64 +#define KBD_CODE_F7 65 +#define KBD_CODE_F8 66 +#define KBD_CODE_F9 67 +#define KBD_CODE_F10 68 +#define KBD_CODE_F11 87 +#define KBD_CODE_F12 88 + /* vim: set ts=4 sw=4 tw=0 noet :*/ |