diff options
author | Tibor Nagy <xnagytibor@gmail.com> | 2019-12-31 13:37:38 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-12-31 19:31:42 +0100 |
commit | 624116a8b1c69f52f61b82a441e8450bf5ec12ad (patch) | |
tree | 9d997a715f90d7c402388beed067cd8c6348416c /Kernel/Syscall.h | |
parent | 36f1de3c898330a827cabe904ff99b4377b06131 (diff) | |
download | serenity-624116a8b1c69f52f61b82a441e8450bf5ec12ad.zip |
Kernel: Implement AltGr key support
Diffstat (limited to 'Kernel/Syscall.h')
-rw-r--r-- | Kernel/Syscall.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Kernel/Syscall.h b/Kernel/Syscall.h index 3661d9a594..58942d1d31 100644 --- a/Kernel/Syscall.h +++ b/Kernel/Syscall.h @@ -270,6 +270,13 @@ struct SC_futex_params { const timespec* timeout; }; +struct SC_setkeymap_params { + const char* map; + const char* shift_map; + const char* alt_map; + const char* altgr_map; +}; + struct SC_create_thread_params { unsigned int m_detach_state = 0; // JOINABLE or DETACHED int m_schedule_priority = 30; // THREAD_PRIORITY_NORMAL |