python-tslib/tslib.c

13 lines
179 B
C
Raw Normal View History

2014-06-26 08:33:38 +00:00
#include <tslib.h>
#include <stdio.h>
int main()
{
struct tsdev *ts;
ts = ts_open("/dev/input/event2", 0)
if (!ts) {
fprintf(stderr, "cannot open event2");
return 1;
}
}