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.

14 lines
242 B

  1. #include "quantum.h"
  2. #include <string.h>
  3. typedef struct seq_t {
  4. const char *sequence;
  5. const char *result;
  6. } seq_t;
  7. extern seq_t seq_config[];
  8. extern uint16_t seq_config_size;
  9. void seq_start(void);
  10. bool seq_feed(uint16_t keycode);