panoramix: unexport screen dimension fields
Not used by any drivers, so no need to keep it exported. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
parent
adfd065667
commit
194c28f5e5
|
@ -73,7 +73,7 @@ int PanoramiXPixWidth = 0;
|
||||||
int PanoramiXPixHeight = 0;
|
int PanoramiXPixHeight = 0;
|
||||||
int PanoramiXNumScreens = 0;
|
int PanoramiXNumScreens = 0;
|
||||||
|
|
||||||
_X_EXPORT RegionRec PanoramiXScreenRegion = { {0, 0, 0, 0}, NULL };
|
RegionRec PanoramiXScreenRegion = { {0, 0, 0, 0}, NULL };
|
||||||
|
|
||||||
static int PanoramiXNumDepths;
|
static int PanoramiXNumDepths;
|
||||||
static DepthPtr PanoramiXDepths;
|
static DepthPtr PanoramiXDepths;
|
||||||
|
|
|
@ -6,10 +6,10 @@
|
||||||
|
|
||||||
#include "panoramiX.h"
|
#include "panoramiX.h"
|
||||||
|
|
||||||
extern _X_EXPORT int PanoramiXNumScreens;
|
extern int PanoramiXNumScreens;
|
||||||
extern _X_EXPORT int PanoramiXPixWidth;
|
extern int PanoramiXPixWidth;
|
||||||
extern _X_EXPORT int PanoramiXPixHeight;
|
extern int PanoramiXPixHeight;
|
||||||
extern _X_EXPORT RegionRec PanoramiXScreenRegion;
|
extern RegionRec PanoramiXScreenRegion;
|
||||||
|
|
||||||
extern _X_EXPORT VisualID PanoramiXTranslateVisualID(int screen, VisualID orig);
|
extern _X_EXPORT VisualID PanoramiXTranslateVisualID(int screen, VisualID orig);
|
||||||
extern _X_EXPORT void PanoramiXConsolidate(void);
|
extern _X_EXPORT void PanoramiXConsolidate(void);
|
||||||
|
|
Loading…
Reference in New Issue