aboutsummaryrefslogtreecommitdiffstats
path: root/includer.c
diff options
context:
space:
mode:
Diffstat (limited to 'includer.c')
-rw-r--r--includer.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/includer.c b/includer.c
new file mode 100644
index 0000000..9a02d22
--- /dev/null
+++ b/includer.c
@@ -0,0 +1,12 @@
+#include <stdio.h>
+#include "dome_key_map.h"
+
+#define SIZE 2
+
+int main() {
+ HeadphoneButton trigger[SIZE] = {Play, Down};
+ const CKeyActionResult *result = c_run_key_action(trigger, SIZE);
+ printf("%s", result->action);
+
+ return 0;
+}