add pollux/caanoo port, refactor things
[pcsx_rearmed.git] / frontend / pl_gun_ts.h
1 #ifdef HAVE_TSLIB
2
3 struct tsdev;
4
5 struct tsdev *pl_gun_ts_init(void);
6 void pl_gun_ts_update(struct tsdev *ts, int *x, int *y, int *in);
7 void pl_set_gun_rect(int x, int y, int w, int h);
8
9 #else
10
11 #define pl_gun_ts_init() NULL
12 #define pl_gun_ts_update(...) do {} while (0)
13
14 #endif