diff options
author | Hüseyin ASLITÜRK <huseyin@asliturk.com> | 2019-11-23 10:48:07 +0300 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-11-25 11:53:02 +0100 |
commit | 794ca16cca44beec749ec499a37cf2fe152b93c6 (patch) | |
tree | 2a354db7b200ab132b502068bbc8132a8bfd1f48 /Kernel/Devices/KeyboardDevice.h | |
parent | 28ada307834eebe27c17c138ca23fd46b1c6bd16 (diff) | |
download | serenity-794ca16cca44beec749ec499a37cf2fe152b93c6.zip |
Kernel: Implement the setkeymap() syscall.
Diffstat (limited to 'Kernel/Devices/KeyboardDevice.h')
-rw-r--r-- | Kernel/Devices/KeyboardDevice.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/Devices/KeyboardDevice.h b/Kernel/Devices/KeyboardDevice.h index 7ba8493744..65c3cd2f6b 100644 --- a/Kernel/Devices/KeyboardDevice.h +++ b/Kernel/Devices/KeyboardDevice.h @@ -21,6 +21,7 @@ public: KeyboardDevice(); void set_client(KeyboardClient* client) { m_client = client; } + void set_maps(char* n_map, char* n_shift_map, char* n_alt_map); // ^CharacterDevice virtual ssize_t read(FileDescription&, u8* buffer, ssize_t) override; |