mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-24 10:14:52 +00:00
Not used by any external drivers, so no need to keep them in public SDK headers. Since they're never used by drivers, it's effectively not an ABI change, so can safely be done within ABI-25. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
27 lines
697 B
C
27 lines
697 B
C
|
|
#ifndef _XSERV_GLOBAL_H_
|
|
#define _XSERV_GLOBAL_H_
|
|
|
|
#include "window.h" /* for WindowPtr */
|
|
#include "extinit.h"
|
|
#ifdef DPMSExtension
|
|
/* sigh, too many drivers assume this */
|
|
#include <X11/extensions/dpmsconst.h>
|
|
#endif
|
|
|
|
/* Global X server variables that are visible to mi, dix, os, and ddx */
|
|
|
|
extern _X_EXPORT const char *defaultFontPath;
|
|
extern _X_EXPORT int monitorResolution;
|
|
extern _X_EXPORT int defaultColorVisualClass;
|
|
|
|
extern _X_EXPORT int GrabInProgress;
|
|
extern _X_EXPORT char *SeatId;
|
|
extern _X_EXPORT char *ConnectionInfo;
|
|
|
|
#ifdef XINERAMA
|
|
extern _X_EXPORT Bool PanoramiXExtensionDisabledHack;
|
|
#endif /* XINERAMA */
|
|
|
|
#endif /* !_XSERV_GLOBAL_H_ */
|