1 | /* $Xorg: opaque.h,v 1.4 2001/02/09 02:05:15 xorgcvs Exp $ */
|
---|
2 | /*
|
---|
3 |
|
---|
4 | Copyright 1987, 1998 The Open Group
|
---|
5 |
|
---|
6 | Permission to use, copy, modify, distribute, and sell this software and its
|
---|
7 | documentation for any purpose is hereby granted without fee, provided that
|
---|
8 | the above copyright notice appear in all copies and that both that
|
---|
9 | copyright notice and this permission notice appear in supporting
|
---|
10 | documentation.
|
---|
11 |
|
---|
12 | The above copyright notice and this permission notice shall be included
|
---|
13 | in all copies or substantial portions of the Software.
|
---|
14 |
|
---|
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
---|
16 | OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
---|
17 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
---|
18 | IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
---|
19 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
---|
20 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
---|
21 | OTHER DEALINGS IN THE SOFTWARE.
|
---|
22 |
|
---|
23 | Except as contained in this notice, the name of The Open Group shall
|
---|
24 | not be used in advertising or otherwise to promote the sale, use or
|
---|
25 | other dealings in this Software without prior written authorization
|
---|
26 | from The Open Group.
|
---|
27 |
|
---|
28 | */
|
---|
29 | /* $XFree86: xc/programs/Xserver/include/opaque.h,v 1.13 2003/07/24 13:50:25 eich Exp $ */
|
---|
30 |
|
---|
31 | #ifndef OPAQUE_H
|
---|
32 | #define OPAQUE_H
|
---|
33 |
|
---|
34 | #include <X11/Xmd.h>
|
---|
35 |
|
---|
36 | #include "globals.h"
|
---|
37 |
|
---|
38 | extern char *defaultTextFont;
|
---|
39 | extern char *defaultCursorFont;
|
---|
40 | extern int MaxClients;
|
---|
41 | extern volatile char isItTimeToYield;
|
---|
42 | extern volatile char dispatchException;
|
---|
43 |
|
---|
44 | /* bit values for dispatchException */
|
---|
45 | #define DE_RESET 1
|
---|
46 | #define DE_TERMINATE 2
|
---|
47 | #define DE_PRIORITYCHANGE 4 /* set when a client's priority changes */
|
---|
48 |
|
---|
49 | extern CARD32 TimeOutValue;
|
---|
50 | extern int ScreenSaverBlanking;
|
---|
51 | extern int ScreenSaverAllowExposures;
|
---|
52 | extern int defaultScreenSaverBlanking;
|
---|
53 | extern int defaultScreenSaverAllowExposures;
|
---|
54 | extern int argcGlobal;
|
---|
55 | extern char **argvGlobal;
|
---|
56 | extern char *display;
|
---|
57 |
|
---|
58 | extern int defaultBackingStore;
|
---|
59 | extern Bool disableBackingStore;
|
---|
60 | extern Bool enableBackingStore;
|
---|
61 | extern Bool disableSaveUnders;
|
---|
62 | extern Bool PartialNetwork;
|
---|
63 | #ifndef NOLOGOHACK
|
---|
64 | extern int logoScreenSaver;
|
---|
65 | #endif
|
---|
66 | #ifdef RLIMIT_DATA
|
---|
67 | extern int limitDataSpace;
|
---|
68 | #endif
|
---|
69 | #ifdef RLIMIT_STACK
|
---|
70 | extern int limitStackSpace;
|
---|
71 | #endif
|
---|
72 | #ifdef RLIMIT_NOFILE
|
---|
73 | extern int limitNoFile;
|
---|
74 | #endif
|
---|
75 | extern Bool permitOldBugs;
|
---|
76 | extern Bool defeatAccessControl;
|
---|
77 | extern long maxBigRequestSize;
|
---|
78 | extern Bool blackRoot;
|
---|
79 |
|
---|
80 | extern Bool CoreDump;
|
---|
81 |
|
---|
82 |
|
---|
83 | #endif /* OPAQUE_H */
|
---|