
M include/Makefile A include/minix/input.h M include/minix/com.h M drivers/tty/keyboard.c M drivers/tty/tty.c M drivers/tty/tty.h M include/minix/syslib.h M lib/libsys/Makefile A lib/libsys/input.c
9 lines
130 B
C
9 lines
130 B
C
#ifndef _MINIX_INPUT_H
|
|
#define _MINIX_INPUT_H
|
|
|
|
#define INPUT_EV_KEY 0x1
|
|
#define INPUT_EV_REL 0x2
|
|
#define INPUT_EV_ABS 0x3
|
|
|
|
#endif
|