2006-11-26 11:13:41 -07:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright 1993 by Davor Matic
|
|
|
|
|
|
|
|
Permission to use, copy, modify, distribute, and sell this software
|
|
|
|
and its documentation for any purpose is hereby granted without fee,
|
|
|
|
provided that the above copyright notice appear in all copies and that
|
|
|
|
both that copyright notice and this permission notice appear in
|
|
|
|
supporting documentation. Davor Matic makes no representations about
|
|
|
|
the suitability of this software for any purpose. It is provided "as
|
|
|
|
is" without express or implied warranty.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef XNESTARGC_H
|
|
|
|
#define XNESTARGS_H
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
extern char *xnestDisplayName;
|
2006-11-26 11:13:41 -07:00
|
|
|
extern Bool xnestSynchronize;
|
|
|
|
extern Bool xnestFullGeneration;
|
2012-06-10 07:21:05 -06:00
|
|
|
extern int xnestDefaultClass;
|
2006-11-26 11:13:41 -07:00
|
|
|
extern Bool xnestUserDefaultClass;
|
2012-06-10 07:21:05 -06:00
|
|
|
extern int xnestDefaultDepth;
|
2006-11-26 11:13:41 -07:00
|
|
|
extern Bool xnestUserDefaultDepth;
|
|
|
|
extern Bool xnestSoftwareScreenSaver;
|
2012-06-10 07:21:05 -06:00
|
|
|
extern int xnestX;
|
|
|
|
extern int xnestY;
|
|
|
|
extern unsigned int xnestWidth;
|
|
|
|
extern unsigned int xnestHeight;
|
2006-11-26 11:13:41 -07:00
|
|
|
extern int xnestUserGeometry;
|
2012-06-10 07:21:05 -06:00
|
|
|
extern int xnestBorderWidth;
|
2006-11-26 11:13:41 -07:00
|
|
|
extern Bool xnestUserBorderWidth;
|
2012-06-10 07:21:05 -06:00
|
|
|
extern char *xnestWindowName;
|
2006-11-26 11:13:41 -07:00
|
|
|
extern int xnestNumScreens;
|
|
|
|
extern Bool xnestDoDirectColormaps;
|
|
|
|
extern Window xnestParentWindow;
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
#endif /* XNESTARGS_H */
|