aboutsummaryrefslogtreecommitdiff
path: root/quantum/process_keycode/process_unicode.h
diff options
context:
space:
mode:
authorGergely Nagy <algernon@madhouse-project.org>2016-08-14 14:34:52 +0200
committerGergely Nagy <algernon@madhouse-project.org>2016-08-15 10:08:53 +0200
commita312cbf712764277e0dbbbb99410c2f6fc6c7484 (patch)
tree9f78d4f9d041304fea69e78f68bfd52f972aecfb /quantum/process_keycode/process_unicode.h
parent234dd276cf03be6fd6961473e9d9c8f35deec682 (diff)
downloadqmk_firmware-a312cbf712764277e0dbbbb99410c2f6fc6c7484.tar.gz
qmk_firmware-a312cbf712764277e0dbbbb99410c2f6fc6c7484.zip
process_unicode: Use uint32_t for UCIS purposes
Use a single uint32_t to store the unicode of a symbol, instead of an array of uint16_ts. Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
Diffstat (limited to 'quantum/process_keycode/process_unicode.h')
-rw-r--r--quantum/process_keycode/process_unicode.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/quantum/process_keycode/process_unicode.h b/quantum/process_keycode/process_unicode.h
index 75607e40e..dd6dd7138 100644
--- a/quantum/process_keycode/process_unicode.h
+++ b/quantum/process_keycode/process_unicode.h
@@ -12,6 +12,7 @@ void set_unicode_input_mode(uint8_t os_target);
12void unicode_input_start(void); 12void unicode_input_start(void);
13void unicode_input_finish(void); 13void unicode_input_finish(void);
14void register_hex(uint16_t hex); 14void register_hex(uint16_t hex);
15void register_hex32(uint32_t hex);
15 16
16bool process_unicode(uint16_t keycode, keyrecord_t *record); 17bool process_unicode(uint16_t keycode, keyrecord_t *record);
17 18
@@ -22,7 +23,7 @@ bool process_unicode(uint16_t keycode, keyrecord_t *record);
22 23
23typedef struct { 24typedef struct {
24 char *symbol; 25 char *symbol;
25 uint16_t codes[4]; 26 uint32_t code;
26} qk_ucis_symbol_t; 27} qk_ucis_symbol_t;
27 28
28struct { 29struct {
@@ -31,8 +32,8 @@ struct {
31 bool in_progress:1; 32 bool in_progress:1;
32} qk_ucis_state; 33} qk_ucis_state;
33 34
34#define UCIS_TABLE(...) {__VA_ARGS__, {NULL, {}}} 35#define UCIS_TABLE(...) {__VA_ARGS__, {NULL, 0}}
35#define UCIS_SYM(name, ...) {name, {__VA_ARGS__, 0}} 36#define UCIS_SYM(name, code) {name, code}
36 37
37extern const qk_ucis_symbol_t ucis_symbol_table[]; 38extern const qk_ucis_symbol_t ucis_symbol_table[];
38 39