mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-24 16:44:52 +00:00
Only internally within OS layer and screen saver logic, so no need to keep it exported. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
24 lines
580 B
C
24 lines
580 B
C
|
|
#ifndef _XSERV_GLOBAL_H_
|
|
#define _XSERV_GLOBAL_H_
|
|
|
|
#include <X11/Xdefs.h>
|
|
#include <X11/Xfuncproto.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 char *SeatId;
|
|
|
|
#endif /* !_XSERV_GLOBAL_H_ */
|