diff options
author | Daniel Stone <daniel@fooishbar.org> | 2006-10-20 00:39:50 +0300 |
---|---|---|
committer | Daniel Stone <daniels@endtroducing.fooishbar.org> | 2006-10-20 00:45:43 +0300 |
commit | 2a3f042241bb63601f5745f397bb1b66ecc5a592 (patch) | |
tree | 133e291709276b4653d47d78d1eb2e194c89385c /src/XChgDCtl.c | |
parent | c27e00ceceed3fea011c98c0e70ab568bf0687c6 (diff) |
add DEVICE_ENABLE control, add iscore to DEVICE_CORE
Add DEVICE_ENABLE for enabling/disabling devices, and an 'iscore'
flag to DEVICE_CORE that specifies whether or not the device is a
virtual core device.
Diffstat (limited to 'src/XChgDCtl.c')
-rw-r--r-- | src/XChgDCtl.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/XChgDCtl.c b/src/XChgDCtl.c index 9e71475..49e3a52 100644 --- a/src/XChgDCtl.c +++ b/src/XChgDCtl.c @@ -153,6 +153,27 @@ XChangeDeviceControl(dpy, dev, control, d) return rep.status; } } + case DEVICE_ENABLE: + { + XDeviceEnableControl *E = (XDeviceEnableControl *) d; + xDeviceEnableCtl e; + + e.control = DEVICE_ENABLE; + e.length = sizeof(e); + e.enable = E->enable; + + req->length += (sizeof(e) + 3) >> 2; + Data (dpy, (char *) &e, sizeof(e)); + + if (!_XReply(dpy, (xReply *) &rep, 0, xTrue)) { + UnlockDisplay(dpy); + SyncHandle(); + return NoSuchExtension; + } + else { + return rep.status; + } + } default: { xDeviceCtl u; |