aboutsummaryrefslogtreecommitdiffstats
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 @@
+#include "quantum.h"
+
+#include <string.h>
+
+typedef struct seq_t {
+ const char *sequence;
+ const char *result;
+} seq_t;
+
+extern seq_t seq_config[];
+extern uint16_t seq_config_size;
+
+void seq_start(void);
+bool seq_feed(uint16_t keycode);