1/************************************************************ 2 3Copyright 1996 by Thomas E. Dickey <dickey@clark.net> 4 5 All Rights Reserved 6 7Permission to use, copy, modify, and distribute this software and its 8documentation for any purpose and without fee is hereby granted, 9provided that the above copyright notice appear in all copies and that 10both that copyright notice and this permission notice appear in 11supporting documentation, and that the name of the above listed 12copyright holder(s) not be used in advertising or publicity pertaining 13to distribution of the software without specific, written prior 14permission. 15 16THE ABOVE LISTED COPYRIGHT HOLDER(S) DISCLAIM ALL WARRANTIES WITH REGARD 17TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 18AND FITNESS, IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT HOLDER(S) BE 19LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 20WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 21ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 22OR 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 57extern _X_EXPORT Bool noCompositeExtension; 58extern void CompositeExtensionInit(void); 59#endif 60 61#ifdef DAMAGE 62extern _X_EXPORT Bool noDamageExtension; 63extern void DamageExtensionInit(void); 64#endif 65 66#if defined(DBE) 67extern _X_EXPORT Bool noDbeExtension; 68extern void DbeExtensionInit(void); 69#endif 70 71#if defined(DPMSExtension) 72extern _X_EXPORT Bool noDPMSExtension; 73extern void DPMSExtensionInit(void); 74#endif 75 76extern Bool noGEExtension; 77extern void GEExtensionInit(void); 78 79#ifdef GLXEXT 80extern _X_EXPORT Bool noGlxExtension; 81extern void GlxExtensionInit(void); 82#endif 83 84#ifdef PANORAMIX 85extern _X_EXPORT Bool noPanoramiXExtension; 86extern void PanoramiXExtensionInit(void); 87#endif 88 89#ifdef RANDR 90extern _X_EXPORT Bool noRRExtension; 91extern void RRExtensionInit(void); 92#endif 93 94#if defined(XRECORD) 95extern void RecordExtensionInit(void); 96#endif 97 98extern _X_EXPORT Bool noRenderExtension; 99extern void RenderExtensionInit(void); 100 101#if defined(RES) 102extern _X_EXPORT Bool noResExtension; 103extern void ResExtensionInit(void); 104#endif 105 106#if defined(SCREENSAVER) 107extern _X_EXPORT Bool noScreenSaverExtension; 108extern void ScreenSaverExtensionInit(void); 109#endif 110 111extern void ShapeExtensionInit(void); 112 113#ifdef MITSHM 114extern _X_EXPORT Bool noMITShmExtension; 115extern void ShmExtensionInit(void); 116#endif 117 118extern void SyncExtensionInit(void); 119 120extern void XCMiscExtensionInit(void); 121 122#ifdef XCSECURITY 123extern _X_EXPORT Bool noSecurityExtension; 124extern void SecurityExtensionInit(void); 125#endif 126 127#ifdef XF86BIGFONT 128extern _X_EXPORT Bool noXFree86BigfontExtension; 129extern void XFree86BigfontExtensionInit(void); 130#endif 131 132extern void BigReqExtensionInit(void); 133 134extern _X_EXPORT Bool noXFixesExtension; 135extern void XFixesExtensionInit(void); 136 137extern void XInputExtensionInit(void); 138 139extern void XkbExtensionInit(void); 140 141#if defined(XSELINUX) 142extern _X_EXPORT Bool noSELinuxExtension; 143extern void SELinuxExtensionInit(void); 144#endif 145 146#ifdef XTEST 147extern void XTestExtensionInit(void); 148#endif 149 150#if defined(XV) 151extern _X_EXPORT Bool noXvExtension; 152extern void XvExtensionInit(void); 153extern void XvMCExtensionInit(void); 154#endif 155 156#if defined(DRI3) 157extern void dri3_extension_init(void); 158#endif 159 160#if defined(PRESENT) 161#include "presentext.h" 162#endif 163 164#endif 165