a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync/************************************************************
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncCopyright 1996 by Thomas E. Dickey <dickey@clark.net>
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync All Rights Reserved
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncPermission to use, copy, modify, and distribute this software and its
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncdocumentation for any purpose and without fee is hereby granted,
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncprovided that the above copyright notice appear in all copies and that
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncboth that copyright notice and this permission notice appear in
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncsupporting documentation, and that the name of the above listed
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsynccopyright holder(s) not be used in advertising or publicity pertaining
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncto distribution of the software without specific, written prior
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncpermission.
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncTHE ABOVE LISTED COPYRIGHT HOLDER(S) DISCLAIM ALL WARRANTIES WITH REGARD
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncTO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncAND FITNESS, IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT HOLDER(S) BE
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncLIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync********************************************************/
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync/*
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync * Copyright (C) 1994-2003 The XFree86 Project, Inc. All Rights Reserved.
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync *
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync * Permission is hereby granted, free of charge, to any person obtaining a copy of
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync * this software and associated documentation files (the "Software"), to deal in
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync * the Software without restriction, including without limitation the rights to
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync * of the Software, and to permit persons to whom the Software is furnished to do
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync * so, subject to the following conditions:
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync *
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync * The above copyright notice and this permission notice shall be included in all
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync * copies or substantial portions of the Software.
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync *
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync * NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync * XFREE86 PROJECT BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync *
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync * Except as contained in this notice, the name of the XFree86 Project shall not
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync * be used in advertising or otherwise to promote the sale, use or other dealings
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync * in this Software without prior written authorization from the XFree86 Project.
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync */
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#ifndef EXTINIT_H
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#define EXTINIT_H
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#include "extnsionst.h"
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#ifdef COMPOSITE
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern _X_EXPORT Bool noCompositeExtension;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern void CompositeExtensionInit(void);
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#endif
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#ifdef DAMAGE
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern _X_EXPORT Bool noDamageExtension;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern void DamageExtensionInit(void);
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#endif
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#if defined(DBE)
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern _X_EXPORT Bool noDbeExtension;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern void DbeExtensionInit(void);
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#endif
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#if defined(DPMSExtension)
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#include <X11/extensions/dpmsconst.h>
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern _X_EXPORT Bool noDPMSExtension;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern void DPMSExtensionInit(void);
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#endif
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern Bool noGEExtension;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern void GEExtensionInit(void);
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#ifdef GLXEXT
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern _X_EXPORT Bool noGlxExtension;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#endif
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#ifdef PANORAMIX
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#include <X11/extensions/panoramiXproto.h>
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern _X_EXPORT Bool noPanoramiXExtension;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern void PanoramiXExtensionInit(void);
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#endif
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#ifdef RANDR
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern _X_EXPORT Bool noRRExtension;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern void RRExtensionInit(void);
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#endif
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#if defined(XRECORD)
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern void RecordExtensionInit(void);
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#endif
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern _X_EXPORT Bool noRenderExtension;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern void RenderExtensionInit(void);
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#if defined(RES)
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#include <X11/extensions/XResproto.h>
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern _X_EXPORT Bool noResExtension;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern void ResExtensionInit(void);
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#endif
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#if defined(SCREENSAVER)
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#include <X11/extensions/saver.h>
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern _X_EXPORT Bool noScreenSaverExtension;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern void ScreenSaverExtensionInit(void);
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#endif
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#include <X11/extensions/shapeproto.h>
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern void ShapeExtensionInit(void);
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#ifdef MITSHM
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#include <X11/extensions/shm.h>
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#include <X11/extensions/shmproto.h>
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern _X_EXPORT Bool noMITShmExtension;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern void ShmExtensionInit(void);
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#endif
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern void SyncExtensionInit(void);
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern void XCMiscExtensionInit(void);
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#ifdef XCSECURITY
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#include <X11/extensions/secur.h>
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#include "securitysrv.h"
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern _X_EXPORT Bool noSecurityExtension;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern void SecurityExtensionInit(void);
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#endif
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#ifdef XF86BIGFONT
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#include <X11/extensions/xf86bigfproto.h>
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern _X_EXPORT Bool noXFree86BigfontExtension;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern void XFree86BigfontExtensionInit(void);
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#endif
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern void BigReqExtensionInit(void);
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern _X_EXPORT Bool noXFixesExtension;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern void XFixesExtensionInit(void);
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern void XInputExtensionInit(void);
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern _X_EXPORT void AssignTypeAndName(DeviceIntPtr dev,
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync Atom type,
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync const char *name);
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#include <X11/extensions/XKB.h>
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern void XkbExtensionInit(void);
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#if defined(XSELINUX)
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#include "xselinux.h"
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern _X_EXPORT Bool noSELinuxExtension;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern void SELinuxExtensionInit(void);
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#endif
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#ifdef XTEST
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#include <X11/extensions/xtestconst.h>
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#include <X11/extensions/xtestproto.h>
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern void XTestExtensionInit(void);
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#endif
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#ifdef INXQUARTZ
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern _X_EXPORT Bool noPseudoramiXExtension;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern void PseudoramiXExtensionInit(void);
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#endif
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#if defined(XV)
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#include <X11/extensions/Xv.h>
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#include <X11/extensions/XvMC.h>
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern _X_EXPORT Bool noXvExtension;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern void XvExtensionInit(void);
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern void XvMCExtensionInit(void);
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#endif
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#if defined(DRI3)
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#include <X11/extensions/dri3proto.h>
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern void dri3_extension_init(void);
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#endif
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#if defined(PRESENT)
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#include <X11/extensions/presentproto.h>
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#include "presentext.h"
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#endif
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#endif