diff options
Diffstat (limited to 'users/drashna/callbacks.h')
-rw-r--r-- | users/drashna/callbacks.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/users/drashna/callbacks.h b/users/drashna/callbacks.h new file mode 100644 index 000000000..f6ac6b88d --- /dev/null +++ b/users/drashna/callbacks.h | |||
@@ -0,0 +1,25 @@ | |||
1 | // Copyright 2021 Christopher Courtney, aka Drashna Jael're (@drashna) <drashna@live.com> | ||
2 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
3 | |||
4 | #pragma once | ||
5 | |||
6 | #include "quantum.h" | ||
7 | |||
8 | void matrix_init_keymap(void); | ||
9 | void matrix_init_secret(void); | ||
10 | void shutdown_keymap(void); | ||
11 | void suspend_power_down_keymap(void); | ||
12 | void suspend_wakeup_init_keymap(void); | ||
13 | void matrix_scan_keymap(void); | ||
14 | void matrix_scan_secret(void); | ||
15 | layer_state_t layer_state_set_keymap(layer_state_t state); | ||
16 | layer_state_t default_layer_state_set_keymap(layer_state_t state); | ||
17 | void led_set_keymap(uint8_t usb_led); | ||
18 | void eeconfig_init_keymap(void); | ||
19 | |||
20 | #ifdef CUSTOM_UNICODE_ENABLE | ||
21 | void matrix_init_unicode(void); | ||
22 | #endif | ||
23 | #ifdef SPLIT_KEYBOARD | ||
24 | void matrix_slave_scan_keymap(void); | ||
25 | #endif | ||