2021-12-30 05:17:34 +01:00
|
|
|
// Copyright 2021 Christopher Courtney, aka Drashna Jael're (@drashna) <drashna@live.com>
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "quantum.h"
|
|
|
|
|
2022-11-29 20:43:42 +01:00
|
|
|
void keyboard_post_init_keymap(void);
|
2021-12-30 05:17:34 +01:00
|
|
|
void matrix_init_secret(void);
|
|
|
|
void shutdown_keymap(void);
|
|
|
|
void suspend_power_down_keymap(void);
|
|
|
|
void suspend_wakeup_init_keymap(void);
|
|
|
|
void matrix_scan_keymap(void);
|
|
|
|
void matrix_scan_secret(void);
|
|
|
|
layer_state_t layer_state_set_keymap(layer_state_t state);
|
|
|
|
layer_state_t default_layer_state_set_keymap(layer_state_t state);
|
|
|
|
void led_set_keymap(uint8_t usb_led);
|
|
|
|
void eeconfig_init_keymap(void);
|
2022-07-03 04:55:46 +02:00
|
|
|
void housekeeping_task_keymap(void);
|
2021-12-30 05:17:34 +01:00
|
|
|
|
|
|
|
#ifdef CUSTOM_UNICODE_ENABLE
|
2022-11-29 20:43:42 +01:00
|
|
|
void keyboard_post_init_unicode(void);
|
2021-12-30 05:17:34 +01:00
|
|
|
#endif
|
|
|
|
#ifdef SPLIT_KEYBOARD
|
|
|
|
void matrix_slave_scan_keymap(void);
|
|
|
|
#endif
|