diff options
author | innovaker <66737976+innovaker@users.noreply.github.com> | 2020-12-19 17:32:40 +0000 |
---|---|---|
committer | Pete Johanson <peter@peterjohanson.com> | 2020-12-28 10:20:12 -0500 |
commit | 05b0d185a8c8c4eb19f63968e54f859a0f3e6484 (patch) | |
tree | c95bd966336cc3476170054dcc4ffa56a448864a /app/include/zmk/hid.h | |
parent | 87179698b42a627f4ab7653749377001cb090fed (diff) |
refactor(app): replace zmk_mod with zmk_mod_t
Aligns with typedef _t convention.
PR: #531
Diffstat (limited to 'app/include/zmk/hid.h')
-rw-r--r-- | app/include/zmk/hid.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/include/zmk/hid.h b/app/include/zmk/hid.h index c664082..a2a4bf5 100644 --- a/app/include/zmk/hid.h +++ b/app/include/zmk/hid.h @@ -166,8 +166,8 @@ struct zmk_hid_consumer_report { struct zmk_hid_consumer_report_body body; } __packed; -int zmk_hid_register_mod(zmk_mod modifier); -int zmk_hid_unregister_mod(zmk_mod modifier); +int zmk_hid_register_mod(zmk_mod_t modifier); +int zmk_hid_unregister_mod(zmk_mod_t modifier); int zmk_hid_implicit_modifiers_press(zmk_mod_flags implicit_modifiers); int zmk_hid_implicit_modifiers_release(); int zmk_hid_keyboard_press(zmk_key_t key); |