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