1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:47:45 +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:
Hüseyin ASLITÜRK 2020-06-11 21:26:05 +03:00 committed by Andreas Kling
parent 1887e35dc8
commit 174987f930
4 changed files with 10 additions and 10 deletions

View file

@ -325,10 +325,10 @@ struct SC_futex_params {
};
struct SC_setkeymap_params {
const char* map;
const char* shift_map;
const char* alt_map;
const char* altgr_map;
const u32* map;
const u32* shift_map;
const u32* alt_map;
const u32* altgr_map;
};
struct SC_create_thread_params {