diff options
author | Peter Osterlund <petero2@telia.com> | 2003-10-13 23:33:25 +0200 |
---|---|---|
committer | Peter Osterlund <petero2@telia.com> | 2006-04-09 04:01:17 +0200 |
commit | 64cb1f3f141c17340d38550a2ac251f6a9e30f77 (patch) | |
tree | 6cd02c1143aad34d2b87d704415c599a77f1d346 /synaptics.h | |
parent | d2aa3f955bba0159b2190c1012365699f0b8ecba (diff) |
Report all eight multi buttons in the synclient program.
Diffstat (limited to 'synaptics.h')
-rw-r--r-- | synaptics.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/synaptics.h b/synaptics.h index 29e008b..b71c372 100644 --- a/synaptics.h +++ b/synaptics.h @@ -16,6 +16,7 @@ typedef struct _SynapticsSHM int numFingers; /* number of fingers */ int fingerWidth; /* finger width value */ int left, right, up, down; /* left/right/up/down buttons */ + Bool multi[8]; /* Probed hardware properties */ unsigned long int model_id; /* Model-ID */ @@ -65,8 +66,8 @@ struct SynapticsHwState { Bool right; Bool up; Bool down; - Bool cbLeft; - Bool cbRight; + + Bool multi[8]; }; typedef struct _SynapticsTapRec |