Files
Harald Geyer ad169fb488 New driver linux_input
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>
2016-07-29 19:55:15 +02:00

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