Search notes:

include/uapi/linux/input.h

struct input_event

The event structure.
Depending on the value of some values, the struct might have the following members:
struct input_event {

  struct timeval time;

  __u16 type;
  __u16 code;
  __s32 value;
}
Compare with struct input_value found in include/linux/input.h.
See also the events.InputEvent class found in the Python library evdev.

See also

include/linux/input.h

Index