diff options
author | tmk <nobody@nowhere> | 2013-01-13 10:24:20 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2013-01-13 10:24:20 +0900 |
commit | 32633a42c74c65462370ef4a39a44a5784a98a06 (patch) | |
tree | 8bbc2fc62bcb06c9ea897507a4000b7336d1a6eb /common/host.h | |
parent | 411de9cc22e927313a5a768f3bf41f2f99bca126 (diff) | |
download | qmk_firmware-32633a42c74c65462370ef4a39a44a5784a98a06.tar.gz qmk_firmware-32633a42c74c65462370ef4a39a44a5784a98a06.zip |
Fix tap key using delaying_layer and waiting_key.
Diffstat (limited to 'common/host.h')
-rw-r--r-- | common/host.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common/host.h b/common/host.h index 4f1f234a96..c59fbfee6a 100644 --- a/common/host.h +++ b/common/host.h @@ -51,10 +51,13 @@ void host_consumer_send(uint16_t data); void host_add_key(uint8_t key); void host_del_key(uint8_t key); void host_clear_keys(void); + +uint8_t host_get_mods(void); void host_add_mods(uint8_t mods); void host_del_mods(uint8_t mods); void host_set_mods(uint8_t mods); void host_clear_mods(void); + uint8_t host_has_anykey(void); uint8_t host_has_anymod(void); uint8_t host_get_first_key(void); |