aboutsummaryrefslogtreecommitdiff
path: root/users/anderson/seq.h
diff options
context:
space:
mode:
Diffstat (limited to 'users/anderson/seq.h')
-rw-r--r--users/anderson/seq.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/users/anderson/seq.h b/users/anderson/seq.h
new file mode 100644
index 000000000..2da4e7615
--- /dev/null
+++ b/users/anderson/seq.h
@@ -0,0 +1,14 @@
1#include "quantum.h"
2
3#include <string.h>
4
5typedef struct seq_t {
6 const char *sequence;
7 const char *result;
8} seq_t;
9
10extern seq_t seq_config[];
11extern uint16_t seq_config_size;
12
13void seq_start(void);
14bool seq_feed(uint16_t keycode);