summaryrefslogtreecommitdiffstats
path: root/quantum/process_keycode/process_unicode.h
diff options
context:
space:
mode:
authorGergely Nagy <algernon@madhouse-project.org>2016-08-13 10:43:22 +0200
committerGergely Nagy <algernon@madhouse-project.org>2016-08-15 10:08:53 +0200
commit63e5782d2cdf0ee282ad434c773463d9da9db6b3 (patch)
treec8d95a1ea486d13c18322c007f94dd570f569179 /quantum/process_keycode/process_unicode.h
parentbc8976d27781a45c735eb98d3110e7df6f8a0bad (diff)
downloadqmk_firmware-63e5782d2cdf0ee282ad434c773463d9da9db6b3.tar.gz
qmk_firmware-63e5782d2cdf0ee282ad434c773463d9da9db6b3.tar.xz
process_unicode: Small refactor & linux fix
This moves the unicode input start / end sequences into their own functions, so keymaps and other functionality can build on it too. At the same time, it changes how the Linux variant works, to match reality: CTRL+SHIFT must be unregistered too, and we close the thing with a Space instead. 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.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/quantum/process_keycode/process_unicode.h b/quantum/process_keycode/process_unicode.h
index ca17f8f66..f719a1226 100644
--- a/quantum/process_keycode/process_unicode.h
+++ b/quantum/process_keycode/process_unicode.h
@@ -9,6 +9,9 @@
#define UC_BSD 3
void set_unicode_input_mode(uint8_t os_target);
+void unicode_input_start(void);
+void unicode_input_finish(void);
+void register_hex(uint16_t hex);
bool process_unicode(uint16_t keycode, keyrecord_t *record);