mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-10-31 13:22:31 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			815 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			815 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
 | 
