diff options
author | IBNobody <protospherex@gmail.com> | 2016-10-29 11:13:15 -0500 |
---|---|---|
committer | IBNobody <protospherex@gmail.com> | 2016-10-29 11:13:15 -0500 |
commit | e40c33f754a86c4dd7bd3c7b5c7efe822f2893bc (patch) | |
tree | bf372a8afead88128f68d373435025a16fbf53c2 /quantum/process_keycode/process_unicode.h | |
parent | 973f526bb4928bf3aec6067aa444b31ace997c8a (diff) | |
parent | 32f88c07173b795c6981c779057dceba00aeb1cb (diff) |
Merge branch 'master' of https://github.com/IBNobody/qmk_firmware
Diffstat (limited to 'quantum/process_keycode/process_unicode.h')
-rw-r--r-- | quantum/process_keycode/process_unicode.h | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/quantum/process_keycode/process_unicode.h b/quantum/process_keycode/process_unicode.h index 27f8072ee6..065eeb5f6a 100644 --- a/quantum/process_keycode/process_unicode.h +++ b/quantum/process_keycode/process_unicode.h @@ -3,10 +3,11 @@ #include "quantum.h" -#define UC_OSX 0 -#define UC_LNX 1 -#define UC_WIN 2 -#define UC_BSD 3 +#define UC_OSX 0 // Mac OS X +#define UC_LNX 1 // Linux +#define UC_WIN 2 // Windows 'HexNumpad' +#define UC_BSD 3 // BSD (not implemented) +#define UC_WINC 4 // WinCompose https://github.com/samhocevar/wincompose #ifndef UNICODE_TYPE_DELAY #define UNICODE_TYPE_DELAY 10 @@ -20,6 +21,10 @@ void register_hex(uint16_t hex); bool process_unicode(uint16_t keycode, keyrecord_t *record); +#ifdef UNICODEMAP_ENABLE +bool process_unicode_map(uint16_t keycode, keyrecord_t *record); +#endif + #ifdef UCIS_ENABLE #ifndef UCIS_MAX_SYMBOL_LENGTH #define UCIS_MAX_SYMBOL_LENGTH 32 |