diff options
author | Anton Kling <anton@kling.gg> | 2024-03-19 01:41:22 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-03-19 01:41:22 +0100 |
commit | 553b43d2e563dcff74d4c86904fa3737e96d7365 (patch) | |
tree | 002b70c9d919b8a18a95bb5754c57db897b5977e /userland/libgui/libgui.h | |
parent | 0dccff86e50dfe1555b8bc29862dba2b972a3705 (diff) |
IRC: Add the IRC client I am working on
Diffstat (limited to 'userland/libgui/libgui.h')
-rw-r--r-- | userland/libgui/libgui.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/userland/libgui/libgui.h b/userland/libgui/libgui.h index 07fd3db..cb8d9a7 100644 --- a/userland/libgui/libgui.h +++ b/userland/libgui/libgui.h @@ -19,7 +19,7 @@ typedef struct { // Taken from drivers/keyboard.c struct KEY_EVENT { char c; - uint8_t mode; // (shift (0 bit)) (alt (1 bit)) + uint8_t mode; // (shift (0 bit)) (alt (1 bit)) (ctrl (2 bit)) uint8_t release; // 0 pressed, 1 released }; |