diff options
author | Chase Douglas <chase.douglas@canonical.com> | 2012-03-21 12:58:29 -0700 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2012-03-22 14:30:50 +1000 |
commit | eba82d203e5e817a61180c6510d8de0d063ed05d (patch) | |
tree | 9694bfab239e3f08e04e72e87379b41b9d175a93 /src/synproto.h | |
parent | 73ec252b6f2d25cc49557b1d3789b459b60b8d4e (diff) |
Keep track of which touch slots are open
This change adds a new touch slot state that denotes when the slot is
open but does not have any new data to report.
Signed-off-by: Chase Douglas <chase.douglas@canonical.com>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'src/synproto.h')
-rw-r--r-- | src/synproto.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/synproto.h b/src/synproto.h index 95ebc92..e16aeb0 100644 --- a/src/synproto.h +++ b/src/synproto.h @@ -42,6 +42,7 @@ enum SynapticsSlotState SLOTSTATE_EMPTY = 0, SLOTSTATE_OPEN, SLOTSTATE_CLOSE, + SLOTSTATE_OPEN_EMPTY, SLOTSTATE_UPDATE, }; |