aboutsummaryrefslogtreecommitdiffstats
path: root/includer.c
blob: 9a02d22f8f5038b84cca83a3390e96730719308c (plain)
1
2
3
4
5
6
7
8
9
10
11
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;
}