summaryrefslogtreecommitdiff
path: root/src/keyboard.h
blob: 5642eb511ebbc1e0b1787fc2f716eb7519c63c16 (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 keyboard_event(uint8_t (*get_bytes)());

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

#endif