summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniel Stone <daniel@fooishbar.org>2009-07-13 16:53:57 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2009-07-13 16:53:57 +1000
commit504a5a770bd1d34ea7edc3b94815b2b98a61afc0 (patch)
treef482b04dc49945cd8e63a817d99029a782649c79 /src
parent94bfb0cc3ebbefe548b440f8c5e14154c3a76440 (diff)
Add flags to XIDeviceEvent and XIRawEvent.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'src')
-rw-r--r--src/XExtInt.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/XExtInt.c b/src/XExtInt.c
index 9eec866..7980340 100644
--- a/src/XExtInt.c
+++ b/src/XExtInt.c
@@ -1303,6 +1303,7 @@ wireToDeviceEvent(xXIDeviceEvent *in, XGenericEventCookie* cookie)
out->root_y = FP1616toDBL(in->root_y);
out->event_x = FP1616toDBL(in->event_x);
out->event_y = FP1616toDBL(in->event_y);
+ out->flags = in->flags;
out->mods.base = in->mods.base_mods;
out->mods.locked = in->mods.locked_mods;
out->mods.latched = in->mods.latched_mods;
@@ -1560,6 +1561,7 @@ wireToRawEvent(xXIRawEvent *in, XGenericEventCookie *cookie)
out->time = in->time;
out->detail = in->detail;
out->deviceid = in->deviceid;
+ out->flags = in->flags;
out->valuators.mask_len = in->valuators_len * 4;
out->valuators.mask = next_block(&ptr, out->valuators.mask_len);