Searched refs:raw_code_point (Results 1 – 1 of 1) sorted by relevance
1076 uint16_t raw_code_point = (uint16_t)(wParam); in lv_win32_window_message_callback() local1078 if (raw_code_point >= 0x20 && raw_code_point != 0x7F) in lv_win32_window_message_callback()1080 if (IS_HIGH_SURROGATE(raw_code_point)) in lv_win32_window_message_callback()1082 context->keyboard_utf16_high_surrogate = raw_code_point; in lv_win32_window_message_callback()1084 else if (IS_LOW_SURROGATE(raw_code_point)) in lv_win32_window_message_callback()1086 context->keyboard_utf16_low_surrogate = raw_code_point; in lv_win32_window_message_callback()1089 uint32_t code_point = raw_code_point; in lv_win32_window_message_callback()
Completed in 5 milliseconds