diff options
author | Daniel Stone <daniel.stone@nokia.com> | 2006-07-19 12:15:18 -0400 |
---|---|---|
committer | Daniel Stone <daniels@endtroducing.fooishbar.org> | 2006-07-21 15:19:50 -0400 |
commit | b308dbf273f8c26361b0fee7aca64aec3245f60b (patch) | |
tree | d81b973c4ff1149f08d876f7ae4d95060d8b6d1c /Xi/stubs.c | |
parent | c9a3d9baa81ceb940032ffe529d9eadf2d202ab2 (diff) |
add DEVICE_TOUCHSCREEN and DEVICE_CORE Xi controls (DeviceIntRec ABI break)
Add DEVICE_TOUCHSCREEN and DEVICE_CORE controls to the Xi code, and the
TouchscreenClassRec and a coreEvents flag, to toggle propagation of core
events.
Diffstat (limited to 'Xi/stubs.c')
-rw-r--r-- | Xi/stubs.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Xi/stubs.c b/Xi/stubs.c index 6b9e682b9..90aeddbc7 100644 --- a/Xi/stubs.c +++ b/Xi/stubs.c @@ -287,6 +287,10 @@ ChangeDeviceControl(register ClientPtr client, DeviceIntPtr dev, switch (control->control) { case DEVICE_RESOLUTION: return (BadMatch); + case DEVICE_TOUCHSCREEN: + return (BadMatch); + case DEVICE_CORE: + return (BadMatch); default: return (BadMatch); } |