1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:57:35 +00:00

Kernel+LibKeyboard: Enable querying the current keymap

This commit is contained in:
Ben Wiederhake 2021-01-30 21:35:54 +01:00 committed by Andreas Kling
parent d47ed35801
commit a2c21a55e1
6 changed files with 46 additions and 2 deletions

View file

@ -344,6 +344,7 @@ public:
int sys$reboot();
int sys$realpath(Userspace<const Syscall::SC_realpath_params*>);
ssize_t sys$getrandom(Userspace<void*>, size_t, unsigned int);
int sys$getkeymap(Userspace<const Syscall::SC_getkeymap_params*>);
int sys$setkeymap(Userspace<const Syscall::SC_setkeymap_params*>);
int sys$module_load(Userspace<const char*> path, size_t path_length);
int sys$module_unload(Userspace<const char*> name, size_t name_length);