diff options
author | Ryan <fauxpark@gmail.com> | 2020-02-25 12:54:51 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-25 12:54:51 +1100 |
commit | bb8d4b4d23ee04f6034f8880b8a9f93fa4673c38 (patch) | |
tree | 369bef3cc7ed134775fe25ef81948289023779ec /quantum/process_keycode/process_unicode_common.h | |
parent | 93c5307fd60c35780921570ccf41a1806847eb9c (diff) | |
download | qmk_firmware-bb8d4b4d23ee04f6034f8880b8a9f93fa4673c38.tar.gz qmk_firmware-bb8d4b4d23ee04f6034f8880b8a9f93fa4673c38.zip |
`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); |