mirror of
https://github.com/qmk/qmk_firmware
synced 2024-11-12 23:14:47 +00:00
14 lines
220 B
C
14 lines
220 B
C
|
#ifndef LAYER_H
|
||
|
#define LAYER_H 1
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
|
||
|
/* return keycode for switch */
|
||
|
uint8_t layer_get_keycode(uint8_t row, uint8_t col);
|
||
|
|
||
|
/* process layer switching */
|
||
|
void layer_switching(uint8_t fn_bits);
|
||
|
|
||
|
#endif
|