From 194c28f5e56bb178c29e42d484d8390a468de478 Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Tue, 22 Apr 2025 12:33:15 +0200 Subject: [PATCH] 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 --- Xext/panoramiX.c | 2 +- Xext/panoramiXsrv.h | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Xext/panoramiX.c b/Xext/panoramiX.c index c51202625..9e6bcd5cb 100644 --- a/Xext/panoramiX.c +++ b/Xext/panoramiX.c @@ -73,7 +73,7 @@ int PanoramiXPixWidth = 0; int PanoramiXPixHeight = 0; int PanoramiXNumScreens = 0; -_X_EXPORT RegionRec PanoramiXScreenRegion = { {0, 0, 0, 0}, NULL }; +RegionRec PanoramiXScreenRegion = { {0, 0, 0, 0}, NULL }; static int PanoramiXNumDepths; static DepthPtr PanoramiXDepths; diff --git a/Xext/panoramiXsrv.h b/Xext/panoramiXsrv.h index deaaf8316..9ed2e211a 100644 --- a/Xext/panoramiXsrv.h +++ b/Xext/panoramiXsrv.h @@ -6,10 +6,10 @@ #include "panoramiX.h" -extern _X_EXPORT int PanoramiXNumScreens; -extern _X_EXPORT int PanoramiXPixWidth; -extern _X_EXPORT int PanoramiXPixHeight; -extern _X_EXPORT RegionRec PanoramiXScreenRegion; +extern int PanoramiXNumScreens; +extern int PanoramiXPixWidth; +extern int PanoramiXPixHeight; +extern RegionRec PanoramiXScreenRegion; extern _X_EXPORT VisualID PanoramiXTranslateVisualID(int screen, VisualID orig); extern _X_EXPORT void PanoramiXConsolidate(void);