1 | /* $Xorg: screenint.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 in
|
---|
13 | all copies or substantial portions of the Software.
|
---|
14 |
|
---|
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
---|
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
---|
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
---|
18 | OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
---|
19 | AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
---|
20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
---|
21 |
|
---|
22 | Except as contained in this notice, the name of The Open Group shall not be
|
---|
23 | used in advertising or otherwise to promote the sale, use or other dealings
|
---|
24 | in this Software without prior written authorization from The Open Group.
|
---|
25 |
|
---|
26 |
|
---|
27 | Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
|
---|
28 |
|
---|
29 | All Rights Reserved
|
---|
30 |
|
---|
31 | Permission to use, copy, modify, and distribute this software and its
|
---|
32 | documentation for any purpose and without fee is hereby granted,
|
---|
33 | provided that the above copyright notice appear in all copies and that
|
---|
34 | both that copyright notice and this permission notice appear in
|
---|
35 | supporting documentation, and that the name of Digital not be
|
---|
36 | used in advertising or publicity pertaining to distribution of the
|
---|
37 | software without specific, written prior permission.
|
---|
38 |
|
---|
39 | DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
|
---|
40 | ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
|
---|
41 | DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
|
---|
42 | ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
---|
43 | WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
|
---|
44 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
|
---|
45 | SOFTWARE.
|
---|
46 |
|
---|
47 | ******************************************************************/
|
---|
48 | /* $XFree86: xc/programs/Xserver/include/screenint.h,v 1.5 2001/12/14 19:59:56 dawes Exp $ */
|
---|
49 | #ifndef SCREENINT_H
|
---|
50 | #define SCREENINT_H
|
---|
51 |
|
---|
52 | #include "misc.h"
|
---|
53 |
|
---|
54 | typedef struct _PixmapFormat *PixmapFormatPtr;
|
---|
55 | typedef struct _Visual *VisualPtr;
|
---|
56 | typedef struct _Depth *DepthPtr;
|
---|
57 | typedef struct _Screen *ScreenPtr;
|
---|
58 |
|
---|
59 | extern void ResetScreenPrivates(
|
---|
60 | #if NeedFunctionPrototypes
|
---|
61 | void
|
---|
62 | #endif
|
---|
63 | );
|
---|
64 |
|
---|
65 | extern int AllocateScreenPrivateIndex(
|
---|
66 | #if NeedFunctionPrototypes
|
---|
67 | void
|
---|
68 | #endif
|
---|
69 | );
|
---|
70 |
|
---|
71 | extern void ResetWindowPrivates(
|
---|
72 | #if NeedFunctionPrototypes
|
---|
73 | void
|
---|
74 | #endif
|
---|
75 | );
|
---|
76 |
|
---|
77 | extern int AllocateWindowPrivateIndex(
|
---|
78 | #if NeedFunctionPrototypes
|
---|
79 | void
|
---|
80 | #endif
|
---|
81 | );
|
---|
82 |
|
---|
83 | extern Bool AllocateWindowPrivate(
|
---|
84 | #if NeedFunctionPrototypes
|
---|
85 | ScreenPtr /* pScreen */,
|
---|
86 | int /* index */,
|
---|
87 | unsigned /* amount */
|
---|
88 | #endif
|
---|
89 | );
|
---|
90 |
|
---|
91 | extern void ResetGCPrivates(
|
---|
92 | #if NeedFunctionPrototypes
|
---|
93 | void
|
---|
94 | #endif
|
---|
95 | );
|
---|
96 |
|
---|
97 | extern int AllocateGCPrivateIndex(
|
---|
98 | #if NeedFunctionPrototypes
|
---|
99 | void
|
---|
100 | #endif
|
---|
101 | );
|
---|
102 |
|
---|
103 | extern Bool AllocateGCPrivate(
|
---|
104 | #if NeedFunctionPrototypes
|
---|
105 | ScreenPtr /* pScreen */,
|
---|
106 | int /* index */,
|
---|
107 | unsigned /* amount */
|
---|
108 | #endif
|
---|
109 | );
|
---|
110 |
|
---|
111 | extern int AddScreen(
|
---|
112 | #if NeedFunctionPrototypes
|
---|
113 | Bool (* /*pfnInit*/)(
|
---|
114 | #if NeedNestedPrototypes
|
---|
115 | int /*index*/,
|
---|
116 | ScreenPtr /*pScreen*/,
|
---|
117 | int /*argc*/,
|
---|
118 | char ** /*argv*/
|
---|
119 | #endif
|
---|
120 | ),
|
---|
121 | int /*argc*/,
|
---|
122 | char** /*argv*/
|
---|
123 | #endif
|
---|
124 | );
|
---|
125 |
|
---|
126 | #ifdef PIXPRIV
|
---|
127 |
|
---|
128 | extern void ResetPixmapPrivates(
|
---|
129 | #if NeedFunctionPrototypes
|
---|
130 | void
|
---|
131 | #endif
|
---|
132 | );
|
---|
133 |
|
---|
134 | extern int AllocatePixmapPrivateIndex(
|
---|
135 | #if NeedFunctionPrototypes
|
---|
136 | void
|
---|
137 | #endif
|
---|
138 | );
|
---|
139 |
|
---|
140 | extern Bool AllocatePixmapPrivate(
|
---|
141 | #if NeedFunctionPrototypes
|
---|
142 | ScreenPtr /* pScreen */,
|
---|
143 | int /* index */,
|
---|
144 | unsigned /* amount */
|
---|
145 | #endif
|
---|
146 | );
|
---|
147 |
|
---|
148 | #endif /* PIXPRIV */
|
---|
149 |
|
---|
150 | extern void ResetColormapPrivates(
|
---|
151 | #if NeedFunctionPrototypes
|
---|
152 | void
|
---|
153 | #endif
|
---|
154 | );
|
---|
155 |
|
---|
156 |
|
---|
157 | typedef struct _ColormapRec *ColormapPtr;
|
---|
158 | typedef int (*InitCmapPrivFunc)(
|
---|
159 | #if NeedNestedPrototypes
|
---|
160 | ColormapPtr
|
---|
161 | #endif
|
---|
162 | );
|
---|
163 |
|
---|
164 | extern int AllocateColormapPrivateIndex(
|
---|
165 | #if NeedFunctionPrototypes
|
---|
166 | InitCmapPrivFunc /* initPrivFunc */
|
---|
167 | #endif
|
---|
168 | );
|
---|
169 |
|
---|
170 | #endif /* SCREENINT_H */
|
---|