diff options
Diffstat (limited to 'app/include/zmk/keymap.h')
-rw-r--r-- | app/include/zmk/keymap.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/include/zmk/keymap.h b/app/include/zmk/keymap.h index b8f4969..88dc933 100644 --- a/app/include/zmk/keymap.h +++ b/app/include/zmk/keymap.h @@ -6,7 +6,12 @@ #pragma once +typedef u32_t zmk_keymap_layers_state; + +u8_t zmk_keymap_layer_default(); +zmk_keymap_layers_state zmk_keymap_layer_state(); bool zmk_keymap_layer_active(u8_t layer); +u8_t zmk_keymap_highest_layer_active(); int zmk_keymap_layer_activate(u8_t layer); int zmk_keymap_layer_deactivate(u8_t layer); int zmk_keymap_layer_toggle(u8_t layer); |