refactor(app): replace zmk_keymap_layers_state with zmk_keymap_layers_state_t
Aligns with typedef _t convention. PR: #531
This commit is contained in:
parent
87e7c04b00
commit
0e71dbc860
2 changed files with 5 additions and 5 deletions
|
|
@ -6,10 +6,10 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
typedef uint32_t zmk_keymap_layers_state;
|
||||
typedef uint32_t zmk_keymap_layers_state_t;
|
||||
|
||||
uint8_t zmk_keymap_layer_default();
|
||||
zmk_keymap_layers_state zmk_keymap_layer_state();
|
||||
zmk_keymap_layers_state_t zmk_keymap_layer_state();
|
||||
bool zmk_keymap_layer_active(uint8_t layer);
|
||||
uint8_t zmk_keymap_highest_layer_active();
|
||||
int zmk_keymap_layer_activate(uint8_t layer);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue