summaryrefslogtreecommitdiffstats
path: root/tmk_core/common/report.h
diff options
context:
space:
mode:
authorFred Sundvik <fsundvik@gmail.com>2017-06-17 16:55:44 +0200
committerFred Sundvik <fsundvik@gmail.com>2017-06-18 20:22:22 +0200
commitfb95d86b39074b581455fb35a17477cce79a3738 (patch)
tree69832d2d4827afa1845c4c1fefa0bc304ba6545e /tmk_core/common/report.h
parent017458a07bda3f4b2604d079ec65ef607a1a1e57 (diff)
downloadqmk_firmware-fb95d86b39074b581455fb35a17477cce79a3738.tar.gz
qmk_firmware-fb95d86b39074b581455fb35a17477cce79a3738.tar.xz
Move functions for adding keys from to reports to report.h
Diffstat (limited to 'tmk_core/common/report.h')
-rw-r--r--tmk_core/common/report.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/tmk_core/common/report.h b/tmk_core/common/report.h
index 30ce80542..899fc524c 100644
--- a/tmk_core/common/report.h
+++ b/tmk_core/common/report.h
@@ -184,6 +184,10 @@ void add_key_bit(report_keyboard_t* keyboard_report, uint8_t code);
void del_key_bit(report_keyboard_t* keyboard_report, uint8_t code);
#endif
+void add_key_to_report(report_keyboard_t* keyboard_report, int8_t key);
+void del_key_from_report(report_keyboard_t* keyboard_report, uint8_t key);
+void clear_keys_from_report(report_keyboard_t* keyboard_report);
+
#ifdef __cplusplus
}
#endif