mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 04:37:34 +00:00
Kernel: Replace char and u8 data types to u32 for code point
Remove character property from event and add code_point property.
This commit is contained in:
parent
1887e35dc8
commit
174987f930
4 changed files with 10 additions and 10 deletions
|
@ -161,7 +161,7 @@ enum KeyModifier {
|
|||
struct KeyEvent {
|
||||
KeyCode key { Key_Invalid };
|
||||
u32 scancode { 0 };
|
||||
u8 character { 0 };
|
||||
u32 code_point { 0 };
|
||||
u8 flags { 0 };
|
||||
bool caps_lock_on { false };
|
||||
bool e0_prefix { false };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue