summaryrefslogtreecommitdiff
path: root/host.h
diff options
context:
space:
mode:
authortmk <nobody@nowhere>2012-05-27 14:19:16 +0900
committertmk <nobody@nowhere>2012-05-27 14:19:16 +0900
commit225de7a847a511d004bf909b1334e19497cf2f9d (patch)
treece7c4786038cd3a3bd6086db25a5061e6f51dc73 /host.h
parent7be605cce75ea572cd2eb62dca03e14d161ef467 (diff)
parent11f087002052be0aab285a77362085008e853be6 (diff)
Merge branch 'fix_layer_delay'
Diffstat (limited to 'host.h')
-rw-r--r--host.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/host.h b/host.h
index 06f1311ab0..11b9aacd7c 100644
--- a/host.h
+++ b/host.h
@@ -37,9 +37,12 @@ uint8_t host_keyboard_leds(void);
/* keyboard report operations */
void host_add_key(uint8_t key);
+void host_del_key(uint8_t key);
void host_add_mod_bit(uint8_t mod);
+void host_del_mod_bit(uint8_t mod);
void host_set_mods(uint8_t mods);
void host_add_code(uint8_t code);
+void host_del_code(uint8_t code);
void host_swap_keyboard_report(void);
void host_clear_keyboard_report(void);
uint8_t host_has_anykey(void);