gpu-gles: schtruck/fpse merge: remove windows code
[pcsx_rearmed.git] / frontend / pl_gun_ts.h
CommitLineData
4c08b9e7 1#ifdef HAVE_TSLIB
2
3struct tsdev;
4
5struct tsdev *pl_gun_ts_init(void);
6void pl_gun_ts_update(struct tsdev *ts, int *x, int *y, int *in);
7void pl_set_gun_rect(int x, int y, int w, int h);
8
50306d8d 9int pl_gun_ts_update_raw(struct tsdev *ts, int *x, int *y, int *p);
10int pl_gun_ts_get_fd(struct tsdev *ts);
11
4c08b9e7 12#else
13
14#define pl_gun_ts_init() NULL
15#define pl_gun_ts_update(...) do {} while (0)
16
17#endif