blob: 9c36617a0a1a55bb9b91dbfe8ead52b34e90ba3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#ifndef MTEVENT_H
#define MTEVENT_H
#include "hwdata.h"
////////////////////////////////////////////////////////
struct FingerState {
struct FingerData hw;
int id;
};
////////////////////////////////////////////////////////
struct State {
struct FingerState finger[DIM_FINGER];
int nfinger, button[DIM_BUTTON];
};
////////////////////////////////////////////////////////
void init_state(struct State *s);
void modify_state(struct State *s, const struct HWData* hw);
void output_state(const struct State *s);
const struct FingerState *find_finger(const struct State *s, int id);
////////////////////////////////////////////////////////
#endif
|