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