diff options
author | Ryan <fauxpark@gmail.com> | 2020-02-25 12:54:51 +1100 |
---|---|---|
committer | Florian Didron <fdidron@users.noreply.github.com> | 2020-03-24 16:04:05 +0900 |
commit | e0a355267f12317056c646fb8eeb604d78dce795 (patch) | |
tree | 4107ea91f89728eab5debd701a69ff4f7256413c /quantum/process_keycode/process_unicode_common.h | |
parent | 84a0ba874d81775819e166734139157da32c365e (diff) |
`send_unicode_string()`: Add support for code points > 0xFFFF (#8236)
Diffstat (limited to 'quantum/process_keycode/process_unicode_common.h')
-rw-r--r-- | quantum/process_keycode/process_unicode_common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/quantum/process_keycode/process_unicode_common.h b/quantum/process_keycode/process_unicode_common.h index 393db2d99e..13b6431bf0 100644 --- a/quantum/process_keycode/process_unicode_common.h +++ b/quantum/process_keycode/process_unicode_common.h @@ -79,6 +79,7 @@ void unicode_input_finish(void); void unicode_input_cancel(void); void register_hex(uint16_t hex); +void register_hex32(uint32_t hex); void send_unicode_hex_string(const char *str); void send_unicode_string(const char *str); |