diff options
author | Peter Osterlund <petero2@telia.com> | 2002-07-04 01:00:27 +0200 |
---|---|---|
committer | Peter Osterlund <petero2@telia.com> | 2006-04-09 04:00:50 +0200 |
commit | 5a5fd8052a1e9b55b87dd22bd25c3478701a76f3 (patch) | |
tree | adc933e60795486205b83d6143f81437cc33d548 /synaptics.h | |
parent | a37bd61dc480c033e1baf0e393e643e5496b9337 (diff) |
* Added z, w, left, right, up and down information to the shared memory
area. Updated synclient to report the new information.
* Improved synclient to only report when something changes.
Diffstat (limited to 'synaptics.h')
-rw-r--r-- | synaptics.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/synaptics.h b/synaptics.h index fa74206..f9d415d 100644 --- a/synaptics.h +++ b/synaptics.h @@ -19,6 +19,9 @@ typedef struct _SynapticsMoveHist { typedef struct _SynapticsSHM { int x, y; /* actual x, y Coordinates */ + int z; /* pressure value */ + int w; /* finger width value */ + int left, right, up, down; /* left/right/up/down buttons */ unsigned long int model_id; /* Model-ID */ unsigned long int capabilities; /* Capabilities */ |