You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
402 B
16 lines
402 B
8 years ago
|
#ifndef ACTION_PSEUDO_LUT_H
|
||
|
#define ACTION_PSEUDO_LUT_H
|
||
|
|
||
|
#define SHIFT_BIT_SIZE (0xE7 / 8 + 1) // 1bit per 1key
|
||
|
|
||
|
#define IS_LSFT(kc) ((QK_LSFT & (kc)) == QK_LSFT)
|
||
|
|
||
|
void action_pseudo_lut(keyrecord_t *, uint8_t, const uint16_t (*)[2]);
|
||
|
uint16_t convert_keycode(const uint16_t (*)[2], uint16_t, bool);
|
||
|
|
||
|
uint8_t get_shift_bit(uint16_t);
|
||
|
void add_shift_bit(uint16_t);
|
||
|
void del_shift_bit(uint16_t);
|
||
|
|
||
|
#endif
|