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 *
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync * Globals referenced elsewhere in the server.
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync *
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync */
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#ifdef HAVE_DIX_CONFIG_H
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#include <dix-config.h>
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#endif
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#include "privates.h"
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#ifndef EXGLOBALS_H
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#define EXGLOBALS_H 1
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern int IReqCode;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern int IEventBase;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern int BadDevice;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern int BadMode;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern int DeviceBusy;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern int BadClass;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync/* Note: only the ones needed in files other than extinit.c are declared */
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern const Mask DevicePointerMotionMask;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern const Mask DevicePointerMotionHintMask;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern const Mask DeviceFocusChangeMask;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern const Mask DeviceStateNotifyMask;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern const Mask DeviceMappingNotifyMask;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern const Mask DeviceOwnerGrabButtonMask;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern const Mask DeviceButtonGrabMask;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern const Mask DeviceButtonMotionMask;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern const Mask DevicePresenceNotifyMask;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern const Mask DevicePropertyNotifyMask;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern const Mask XIAllMasks;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern Mask PropagateMask[];
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern int DeviceValuator;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern int DeviceKeyPress;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern int DeviceKeyRelease;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern int DeviceButtonPress;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern int DeviceButtonRelease;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern int DeviceMotionNotify;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern int DeviceFocusIn;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern int DeviceFocusOut;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern int ProximityIn;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern int ProximityOut;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern int DeviceStateNotify;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern int DeviceKeyStateNotify;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern int DeviceButtonStateNotify;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern int DeviceMappingNotify;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern int ChangeDeviceNotify;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern int DevicePresenceNotify;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern int DevicePropertyNotify;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern RESTYPE RT_INPUTCLIENT;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsyncextern DevPrivateKeyRec XIClientPrivateKeyRec;
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#define XIClientPrivateKey (&XIClientPrivateKeyRec)
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync
a5e7ae69e440f6816420fc99599f044e79e716b6vboxsync#endif /* EXGLOBALS_H */