1 /************************************************************
2 
3 Copyright 1996 by Thomas E. Dickey <dickey@clark.net>
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  * Copyright (C) 1994-2003 The XFree86 Project, Inc.  All Rights Reserved.
28  *
29  * Permission is hereby granted, free of charge, to any person obtaining a copy of
30  * this software and associated documentation files (the "Software"), to deal in
31  * the Software without restriction, including without limitation the rights to
32  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
33  * of the Software, and to permit persons to whom the Software is furnished to do
34  * so, subject to the following conditions:
35  *
36  * The above copyright notice and this permission notice shall be included in all
37  * copies or substantial portions of the Software.
38  *
39  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
40  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-
41  * NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
42  * XFREE86 PROJECT BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
43  * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
44  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
45  *
46  * Except as contained in this notice, the name of the XFree86 Project shall not
47  * be used in advertising or otherwise to promote the sale, use or other dealings
48  * in this Software without prior written authorization from the XFree86 Project.
49  */
50 
51 #ifndef EXTINIT_H
52 #define EXTINIT_H
53 
54 #include "extnsionst.h"
55 
56 #ifdef COMPOSITE
57 extern _X_EXPORT Bool noCompositeExtension;
58 extern void CompositeExtensionInit(void);
59 #endif
60 
61 #ifdef DAMAGE
62 extern _X_EXPORT Bool noDamageExtension;
63 extern void DamageExtensionInit(void);
64 #endif
65 
66 #if defined(DBE)
67 extern _X_EXPORT Bool noDbeExtension;
68 extern void DbeExtensionInit(void);
69 #endif
70 
71 #if defined(DPMSExtension)
72 extern _X_EXPORT Bool noDPMSExtension;
73 extern void DPMSExtensionInit(void);
74 #endif
75 
76 extern Bool noGEExtension;
77 extern void GEExtensionInit(void);
78 
79 #ifdef GLXEXT
80 extern _X_EXPORT Bool noGlxExtension;
81 extern void GlxExtensionInit(void);
82 #endif
83 
84 #ifdef PANORAMIX
85 extern _X_EXPORT Bool noPanoramiXExtension;
86 extern void PanoramiXExtensionInit(void);
87 #endif
88 
89 #ifdef RANDR
90 extern _X_EXPORT Bool noRRExtension;
91 extern void RRExtensionInit(void);
92 #endif
93 
94 #if defined(XRECORD)
95 extern void RecordExtensionInit(void);
96 #endif
97 
98 extern _X_EXPORT Bool noRenderExtension;
99 extern void RenderExtensionInit(void);
100 
101 #if defined(RES)
102 extern _X_EXPORT Bool noResExtension;
103 extern void ResExtensionInit(void);
104 #endif
105 
106 #if defined(SCREENSAVER)
107 extern _X_EXPORT Bool noScreenSaverExtension;
108 extern void ScreenSaverExtensionInit(void);
109 #endif
110 
111 extern void ShapeExtensionInit(void);
112 
113 #ifdef MITSHM
114 extern _X_EXPORT Bool noMITShmExtension;
115 extern void ShmExtensionInit(void);
116 #endif
117 
118 extern void SyncExtensionInit(void);
119 
120 extern void XCMiscExtensionInit(void);
121 
122 #ifdef XCSECURITY
123 extern _X_EXPORT Bool noSecurityExtension;
124 extern void SecurityExtensionInit(void);
125 #endif
126 
127 #ifdef XF86BIGFONT
128 extern _X_EXPORT Bool noXFree86BigfontExtension;
129 extern void XFree86BigfontExtensionInit(void);
130 #endif
131 
132 extern void BigReqExtensionInit(void);
133 
134 extern _X_EXPORT Bool noXFixesExtension;
135 extern void XFixesExtensionInit(void);
136 
137 extern void XInputExtensionInit(void);
138 
139 extern void XkbExtensionInit(void);
140 
141 #if defined(XSELINUX)
142 extern _X_EXPORT Bool noSELinuxExtension;
143 extern void SELinuxExtensionInit(void);
144 #endif
145 
146 #ifdef XTEST
147 extern void XTestExtensionInit(void);
148 #endif
149 
150 #if defined(XV)
151 extern _X_EXPORT Bool noXvExtension;
152 extern void XvExtensionInit(void);
153 extern void XvMCExtensionInit(void);
154 #endif
155 
156 #if defined(DRI3)
157 extern void dri3_extension_init(void);
158 #endif
159 
160 #if defined(PRESENT)
161 #include "presentext.h"
162 #endif
163 
164 #endif
165