1 | /************************************************************
|
---|
2 |
|
---|
3 | Copyright 1996 by Thomas E. Dickey <[email protected]>
|
---|
4 |
|
---|
5 | All Rights Reserved
|
---|
6 |
|
---|
7 | Permission to use, copy, modify, and distribute this software and its
|
---|
8 | documentation for any purpose and without fee is hereby granted,
|
---|
9 | provided that the above copyright notice appear in all copies and that
|
---|
10 | both that copyright notice and this permission notice appear in
|
---|
11 | supporting documentation, and that the name of the above listed
|
---|
12 | copyright holder(s) not be used in advertising or publicity pertaining
|
---|
13 | to distribution of the software without specific, written prior
|
---|
14 | permission.
|
---|
15 |
|
---|
16 | THE ABOVE LISTED COPYRIGHT HOLDER(S) DISCLAIM ALL WARRANTIES WITH REGARD
|
---|
17 | TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
---|
18 | AND FITNESS, IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT HOLDER(S) BE
|
---|
19 | LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
---|
20 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
---|
21 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
---|
22 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
---|
23 |
|
---|
24 | ********************************************************/
|
---|
25 |
|
---|
26 | /*****************************************************************
|
---|
27 | *
|
---|
28 | * Globals referenced elsewhere in the server.
|
---|
29 | *
|
---|
30 | */
|
---|
31 | #ifdef HAVE_DIX_CONFIG_H
|
---|
32 | #include <dix-config.h>
|
---|
33 | #endif
|
---|
34 |
|
---|
35 | #ifndef EXGLOBALS_H
|
---|
36 | #define EXGLOBALS_H 1
|
---|
37 |
|
---|
38 | extern int IReqCode;
|
---|
39 | extern int BadDevice;
|
---|
40 | extern int BadMode;
|
---|
41 | extern int DeviceBusy;
|
---|
42 | extern int BadClass;
|
---|
43 |
|
---|
44 | extern Mask DevicePointerMotionMask;
|
---|
45 | extern Mask DevicePointerMotionHintMask;
|
---|
46 | extern Mask DeviceFocusChangeMask;
|
---|
47 | extern Mask DeviceStateNotifyMask;
|
---|
48 | extern Mask DeviceMappingNotifyMask;
|
---|
49 | extern Mask DeviceOwnerGrabButtonMask;
|
---|
50 | extern Mask DeviceButtonGrabMask;
|
---|
51 | extern Mask DeviceButtonMotionMask;
|
---|
52 | extern Mask DevicePresenceNotifyMask;
|
---|
53 | extern Mask PropagateMask[];
|
---|
54 |
|
---|
55 | extern int DeviceValuator;
|
---|
56 | extern int DeviceKeyPress;
|
---|
57 | extern int DeviceKeyRelease;
|
---|
58 | extern int DeviceButtonPress;
|
---|
59 | extern int DeviceButtonRelease;
|
---|
60 | extern int DeviceMotionNotify;
|
---|
61 | extern int DeviceFocusIn;
|
---|
62 | extern int DeviceFocusOut;
|
---|
63 | extern int ProximityIn;
|
---|
64 | extern int ProximityOut;
|
---|
65 | extern int DeviceStateNotify;
|
---|
66 | extern int DeviceKeyStateNotify;
|
---|
67 | extern int DeviceButtonStateNotify;
|
---|
68 | extern int DeviceMappingNotify;
|
---|
69 | extern int ChangeDeviceNotify;
|
---|
70 | extern int DevicePresenceNotify;
|
---|
71 |
|
---|
72 | extern int RT_INPUTCLIENT;
|
---|
73 |
|
---|
74 | #endif /* EXGLOBALS_H */
|
---|