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

Kernel: Implement the setkeymap() syscall.

This commit is contained in:
Hüseyin ASLITÜRK 2019-11-23 10:48:07 +03:00 committed by Andreas Kling
parent 28ada30783
commit 794ca16cca
5 changed files with 54 additions and 3 deletions

View file

@ -221,6 +221,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);
static void initialize();