1/************************************************************
2
3Copyright 1987, 1998  The Open Group
4
5Permission to use, copy, modify, distribute, and sell this software and its
6documentation for any purpose is hereby granted without fee, provided that
7the above copyright notice appear in all copies and that both that
8copyright notice and this permission notice appear in supporting
9documentation.
10
11The above copyright notice and this permission notice shall be included in
12all copies or substantial portions of the Software.
13
14THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
17OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
18AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
21Except as contained in this notice, the name of The Open Group shall not be
22used in advertising or otherwise to promote the sale, use or other dealings
23in this Software without prior written authorization from The Open Group.
24
25Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
26
27                        All Rights Reserved
28
29Permission to use, copy, modify, and distribute this software and its
30documentation for any purpose and without fee is hereby granted,
31provided that the above copyright notice appear in all copies and that
32both that copyright notice and this permission notice appear in
33supporting documentation, and that the name of Digital not be
34used in advertising or publicity pertaining to distribution of the
35software without specific, written prior permission.
36
37DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
38ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
39DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
40ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
41WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
42ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
43SOFTWARE.
44
45********************************************************/
46
47#ifdef HAVE_DIX_CONFIG_H
48#include <dix-config.h>
49#endif
50
51#include <X11/X.h>
52#include <X11/Xmd.h>
53#include "misc.h"
54#include "windowstr.h"
55#include "scrnintstr.h"
56#include "input.h"
57#include "dixfont.h"
58#include "dixstruct.h"
59#include "os.h"
60
61ScreenInfo screenInfo;
62
63KeybdCtrl defaultKeyboardControl = {
64    DEFAULT_KEYBOARD_CLICK,
65    DEFAULT_BELL,
66    DEFAULT_BELL_PITCH,
67    DEFAULT_BELL_DURATION,
68    DEFAULT_AUTOREPEAT,
69    DEFAULT_AUTOREPEATS,
70    DEFAULT_LEDS,
71    0
72};
73
74PtrCtrl defaultPointerControl = {
75    DEFAULT_PTR_NUMERATOR,
76    DEFAULT_PTR_DENOMINATOR,
77    DEFAULT_PTR_THRESHOLD,
78    0
79};
80
81ClientPtr clients[MAXCLIENTS];
82ClientPtr serverClient;
83int currentMaxClients;          /* current size of clients array */
84long maxBigRequestSize = MAX_BIG_REQUEST_SIZE;
85
86unsigned long globalSerialNumber = 0;
87unsigned long serverGeneration = 0;
88
89/* these next four are initialized in main.c */
90CARD32 ScreenSaverTime;
91CARD32 ScreenSaverInterval;
92int ScreenSaverBlanking;
93int ScreenSaverAllowExposures;
94
95/* default time of 10 minutes */
96CARD32 defaultScreenSaverTime = (10 * (60 * 1000));
97CARD32 defaultScreenSaverInterval = (10 * (60 * 1000));
98int defaultScreenSaverBlanking = PreferBlanking;
99int defaultScreenSaverAllowExposures = AllowExposures;
100
101#ifdef SCREENSAVER
102Bool screenSaverSuspended = FALSE;
103#endif
104
105const char *defaultFontPath = COMPILEDDEFAULTFONTPATH;
106FontPtr defaultFont;            /* not declared in dix.h to avoid including font.h in
107                                   every compilation of dix code */
108CursorPtr rootCursor;
109Bool party_like_its_1989 = TRUE;
110Bool whiteRoot = FALSE;
111
112TimeStamp currentTime;
113
114int defaultColorVisualClass = -1;
115int monitorResolution = 0;
116
117const char *display;
118int displayfd = -1;
119Bool explicit_display = FALSE;
120char *ConnectionInfo;
121