diff options
author | Magnus Vigerlöf <Magnus.Vigerlof@home.se> | 2007-04-10 23:54:32 +0300 |
---|---|---|
committer | Daniel Stone <daniels@endtroducing.fooishbar.org> | 2007-04-10 23:58:20 +0300 |
commit | 82962bbae2b4fda274625d1712ef839ce1ab9dc8 (patch) | |
tree | adae2c3d6608872be2a42c3c0a1a077f4b5f8b1e /Xi/stubs.c | |
parent | 7b82a836c66ba88566255052caff63577e1a0384 (diff) |
Input: Add DeleteInputDeviceRequest
Add DIDR, which asks the DDX to remove a device, analogous to
NewInputDeviceRequest. Only implemented for XFree86 at the moment.
Diffstat (limited to 'Xi/stubs.c')
-rw-r--r-- | Xi/stubs.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Xi/stubs.c b/Xi/stubs.c index ed041b815..d425fe9d4 100644 --- a/Xi/stubs.c +++ b/Xi/stubs.c @@ -230,3 +230,15 @@ NewInputDeviceRequest(InputOption *options) { return BadValue; } + +/**************************************************************************** + * + * Caller: configRemoveDevice (and others) + * + * Remove the specified device previously added. + * + */ +void +DeleteInputDeviceRequest(DeviceIntPtr dev) +{ +} |