This driver receives input from event devices of the linux input subsystem. Tested on Linux 3.16/i386. Signed-off-by: Harald Geyer <harald@ccbib.org>
12 lines
245 B
C
12 lines
245 B
C
#ifndef LINUX_INPUT_H
|
|
#define LINUX_INPUT_H
|
|
|
|
#include "lcd.h"
|
|
|
|
MODULE_EXPORT int linuxInput_init (Driver *drvthis);
|
|
MODULE_EXPORT void linuxInput_close (Driver *drvthis);
|
|
|
|
MODULE_EXPORT const char *linuxInput_get_key (Driver *drvthis);
|
|
|
|
#endif
|