summaryrefslogtreecommitdiff
path: root/userland/libc/input.h
blob: a6602f5e77b6ecde0ec0d1c01e94488e97a0fa8a (plain)
1
2
3
4
5
6
7
8
9
#ifndef INPUT_H
#define INPUT_H
#include <stdint.h>

struct input_event {
  uint16_t key;
  uint8_t status;
};
#endif