1*4882a593Smuzhiyun /*
2*4882a593Smuzhiyun * Copyright 2002-2003 Red Hat Inc., Durham, North Carolina.
3*4882a593Smuzhiyun *
4*4882a593Smuzhiyun * All Rights Reserved.
5*4882a593Smuzhiyun *
6*4882a593Smuzhiyun * Permission is hereby granted, free of charge, to any person obtaining
7*4882a593Smuzhiyun * a copy of this software and associated documentation files (the
8*4882a593Smuzhiyun * "Software"), to deal in the Software without restriction, including
9*4882a593Smuzhiyun * without limitation on the rights to use, copy, modify, merge,
10*4882a593Smuzhiyun * publish, distribute, sublicense, and/or sell copies of the Software,
11*4882a593Smuzhiyun * and to permit persons to whom the Software is furnished to do so,
12*4882a593Smuzhiyun * subject to the following conditions:
13*4882a593Smuzhiyun *
14*4882a593Smuzhiyun * The above copyright notice and this permission notice (including the
15*4882a593Smuzhiyun * next paragraph) shall be included in all copies or substantial
16*4882a593Smuzhiyun * portions of the Software.
17*4882a593Smuzhiyun *
18*4882a593Smuzhiyun * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19*4882a593Smuzhiyun * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20*4882a593Smuzhiyun * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21*4882a593Smuzhiyun * NON-INFRINGEMENT. IN NO EVENT SHALL RED HAT AND/OR THEIR SUPPLIERS
22*4882a593Smuzhiyun * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
23*4882a593Smuzhiyun * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
24*4882a593Smuzhiyun * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25*4882a593Smuzhiyun * SOFTWARE.
26*4882a593Smuzhiyun */
27*4882a593Smuzhiyun
28*4882a593Smuzhiyun /*
29*4882a593Smuzhiyun * Authors:
30*4882a593Smuzhiyun * Rickard E. (Rik) Faith <faith@redhat.com>
31*4882a593Smuzhiyun *
32*4882a593Smuzhiyun */
33*4882a593Smuzhiyun
34*4882a593Smuzhiyun /** \file
35*4882a593Smuzhiyun *
36*4882a593Smuzhiyun * This file implements support required by the XINPUT extension.
37*4882a593Smuzhiyun */
38*4882a593Smuzhiyun
39*4882a593Smuzhiyun #ifdef HAVE_DMX_CONFIG_H
40*4882a593Smuzhiyun #include <dmx-config.h>
41*4882a593Smuzhiyun #endif
42*4882a593Smuzhiyun
43*4882a593Smuzhiyun #include <X11/X.h>
44*4882a593Smuzhiyun #include <X11/Xproto.h>
45*4882a593Smuzhiyun #include "inputstr.h"
46*4882a593Smuzhiyun #include <X11/extensions/XI.h>
47*4882a593Smuzhiyun #include <X11/extensions/XIproto.h>
48*4882a593Smuzhiyun #include "XIstubs.h"
49*4882a593Smuzhiyun
50*4882a593Smuzhiyun #include "mipointer.h"
51*4882a593Smuzhiyun #include "dmxinputinit.h"
52*4882a593Smuzhiyun #include "exevents.h"
53*4882a593Smuzhiyun
54*4882a593Smuzhiyun /** Set device mode to \a mode. This is not implemented. */
55*4882a593Smuzhiyun int
SetDeviceMode(ClientPtr client,DeviceIntPtr dev,int mode)56*4882a593Smuzhiyun SetDeviceMode(ClientPtr client, DeviceIntPtr dev, int mode)
57*4882a593Smuzhiyun {
58*4882a593Smuzhiyun return BadMatch;
59*4882a593Smuzhiyun }
60*4882a593Smuzhiyun
61*4882a593Smuzhiyun /** Set device valuators. This is not implemented. */
62*4882a593Smuzhiyun int
SetDeviceValuators(ClientPtr client,DeviceIntPtr dev,int * valuators,int first_valuator,int num_valuators)63*4882a593Smuzhiyun SetDeviceValuators(ClientPtr client,
64*4882a593Smuzhiyun DeviceIntPtr dev,
65*4882a593Smuzhiyun int *valuators, int first_valuator, int num_valuators)
66*4882a593Smuzhiyun {
67*4882a593Smuzhiyun return BadMatch;
68*4882a593Smuzhiyun }
69*4882a593Smuzhiyun
70*4882a593Smuzhiyun /** Change device control. This is not implemented. */
71*4882a593Smuzhiyun int
ChangeDeviceControl(ClientPtr client,DeviceIntPtr dev,xDeviceCtl * control)72*4882a593Smuzhiyun ChangeDeviceControl(ClientPtr client, DeviceIntPtr dev, xDeviceCtl * control)
73*4882a593Smuzhiyun {
74*4882a593Smuzhiyun return BadMatch;
75*4882a593Smuzhiyun }
76