diff options
author | Jack Humbert <jack.humb@gmail.com> | 2017-02-15 16:36:31 -0500 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2017-02-15 16:36:31 -0500 |
commit | cbabb4d417ef58f5d484dc256b637f61619efaa8 (patch) | |
tree | 01ed906acd8ef81a213385697599cee3ac2f68de /quantum/quantum.h | |
parent | 6788cbd76291e1f3103a350598f7bf5d523a7310 (diff) |
split up unicode systems into different files
Diffstat (limited to 'quantum/quantum.h')
-rw-r--r-- | quantum/quantum.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/quantum/quantum.h b/quantum/quantum.h index 18f072189d..580d51202a 100644 --- a/quantum/quantum.h +++ b/quantum/quantum.h @@ -56,6 +56,14 @@ extern uint32_t default_layer_state; #include "process_unicode.h" #endif +#ifdef UCIS_ENABLE + #include "process_ucis.h" +#endif + +#ifdef UNICODEMAP_ENABLE + #include "process_unicodemap.h" +#endif + #include "process_tap_dance.h" #ifdef PRINTING_ENABLE @@ -117,7 +125,7 @@ void send_dword(uint32_t number); void send_word(uint16_t number); void send_byte(uint8_t number); void send_nibble(uint8_t number); - +uint16_t hex_to_keycode(uint8_t hex); void led_set_user(uint8_t usb_led); void led_set_kb(uint8_t usb_led); |