blob: a945162d737e3243330936250c9da58263e55651 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef MTOUCH_H
#define MTOUCH_H
#include "capabilities.h"
#include "hwdata.h"
////////////////////////////////////////////////////////
struct MTouch {
struct Capabilities caps;
struct HWData hw;
};
////////////////////////////////////////////////////////
int configure_mtouch(struct MTouch *mt, int fd);
int init_mtouch(struct MTouch *mt);
////////////////////////////////////////////////////////
#endif
|