1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:38:11 +00:00

Kernel: Implement AltGr key support

This commit is contained in:
Tibor Nagy 2019-12-31 13:37:38 +01:00 committed by Andreas Kling
parent 36f1de3c89
commit 624116a8b1
6 changed files with 36 additions and 15 deletions

View file

@ -227,7 +227,7 @@ public:
int sys$set_process_icon(int icon_id);
int sys$realpath(const char* pathname, char*, size_t);
ssize_t sys$getrandom(void*, size_t, unsigned int);
int sys$setkeymap(char* map, char* shift_map, char* alt_map);
int sys$setkeymap(const Syscall::SC_setkeymap_params*);
int sys$module_load(const char* path, size_t path_length);
int sys$module_unload(const char* name, size_t name_length);
int sys$profiling_enable(pid_t);