diff options
Diffstat (limited to 'tmk_core/common/report.h')
-rw-r--r-- | tmk_core/common/report.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tmk_core/common/report.h b/tmk_core/common/report.h index 8fb28b6ce..30ce80542 100644 --- a/tmk_core/common/report.h +++ b/tmk_core/common/report.h | |||
@@ -174,6 +174,16 @@ typedef struct { | |||
174 | (key == KC_WWW_REFRESH ? AC_REFRESH : \ | 174 | (key == KC_WWW_REFRESH ? AC_REFRESH : \ |
175 | (key == KC_WWW_FAVORITES ? AC_BOOKMARKS : 0))))))))))))))))))))) | 175 | (key == KC_WWW_FAVORITES ? AC_BOOKMARKS : 0))))))))))))))))))))) |
176 | 176 | ||
177 | uint8_t has_anykey(report_keyboard_t* keyboard_report); | ||
178 | uint8_t get_first_key(report_keyboard_t* keyboard_report); | ||
179 | |||
180 | void add_key_byte(report_keyboard_t* keyboard_report, uint8_t code); | ||
181 | void del_key_byte(report_keyboard_t* keyboard_report, uint8_t code); | ||
182 | #ifdef NKRO_ENABLE | ||
183 | void add_key_bit(report_keyboard_t* keyboard_report, uint8_t code); | ||
184 | void del_key_bit(report_keyboard_t* keyboard_report, uint8_t code); | ||
185 | #endif | ||
186 | |||
177 | #ifdef __cplusplus | 187 | #ifdef __cplusplus |
178 | } | 188 | } |
179 | #endif | 189 | #endif |