From 0e71dbc860e19f8eb269841a15b9fccd9ef7d37f Mon Sep 17 00:00:00 2001 From: innovaker <66737976+innovaker@users.noreply.github.com> Date: Sat, 19 Dec 2020 17:37:12 +0000 Subject: refactor(app): replace zmk_keymap_layers_state with zmk_keymap_layers_state_t Aligns with typedef _t convention. PR: #531 --- app/include/zmk/keymap.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/include/zmk/keymap.h') diff --git a/app/include/zmk/keymap.h b/app/include/zmk/keymap.h index 7303d4a..1070af7 100644 --- a/app/include/zmk/keymap.h +++ b/app/include/zmk/keymap.h @@ -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); -- cgit v1.2.3