29 lines
		
	
	
		
			884 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			884 B
		
	
	
	
		
			C
		
	
	
	
	
	
// 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"
 | 
						|
 | 
						|
void          matrix_init_keymap(void);
 | 
						|
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);
 | 
						|
 | 
						|
#ifdef CUSTOM_UNICODE_ENABLE
 | 
						|
void matrix_init_unicode(void);
 | 
						|
#endif
 | 
						|
#ifdef SPLIT_KEYBOARD
 | 
						|
void matrix_slave_scan_keymap(void);
 | 
						|
#endif
 | 
						|
#ifdef CAPS_WORD_ENABLE
 | 
						|
#    include "keyrecords/caps_word.h"
 | 
						|
#endif
 |