summaryrefslogtreecommitdiff
path: root/src/keyboard.h
blob: c867e074873ec60e3c80f2289e2dbefe557e3eb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef __KEYBOARD_H
#define __KEYBOARD_H

#include <stdint.h>

void process_scancode(uint8_t c);

struct {
	int shift;
	int ctrl;
	int alt;
	int meta;
} mod_keys;

#endif