diff options
Diffstat (limited to 'app/include/zmk/keymap.h')
-rw-r--r-- | app/include/zmk/keymap.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/app/include/zmk/keymap.h b/app/include/zmk/keymap.h index 88dc933..7303d4a 100644 --- a/app/include/zmk/keymap.h +++ b/app/include/zmk/keymap.h @@ -6,14 +6,14 @@ #pragma once -typedef u32_t zmk_keymap_layers_state; +typedef uint32_t zmk_keymap_layers_state; -u8_t zmk_keymap_layer_default(); +uint8_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); +bool zmk_keymap_layer_active(uint8_t layer); +uint8_t zmk_keymap_highest_layer_active(); +int zmk_keymap_layer_activate(uint8_t layer); +int zmk_keymap_layer_deactivate(uint8_t layer); +int zmk_keymap_layer_toggle(uint8_t layer); -int zmk_keymap_position_state_changed(u32_t position, bool pressed, s64_t timestamp); +int zmk_keymap_position_state_changed(uint32_t position, bool pressed, int64_t timestamp); |