From 5f776e857d95dee735766df9995feb979138e1de Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Fri, 16 May 2025 17:20:54 +0200 Subject: [PATCH] randr: unexport and document RRXineramaExtensionInit() Not used by any external drivers, so no need to keep it exported. Signed-off-by: Enrico Weigelt, metux IT consult --- randr/randrstr.h | 6 ------ randr/randrstr_priv.h | 5 +++++ 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/randr/randrstr.h b/randr/randrstr.h index b82f01ca5..6ddfefef5 100644 --- a/randr/randrstr.h +++ b/randr/randrstr.h @@ -667,12 +667,6 @@ RRConfigureOutputProperty(RROutputPtr output, Atom property, /* rrprovider.c */ #define PRIME_SYNC_PROP "PRIME Synchronization" -/* rrxinerama.c */ -#ifdef XINERAMA -extern _X_EXPORT void - RRXineramaExtensionInit(void); -#endif - #endif /* _RANDRSTR_H_ */ /* diff --git a/randr/randrstr_priv.h b/randr/randrstr_priv.h index 1f17fca89..bad0befb9 100644 --- a/randr/randrstr_priv.h +++ b/randr/randrstr_priv.h @@ -518,4 +518,9 @@ int RRConfigureProviderProperty(RRProviderPtr provider, Atom property, Bool pending, Bool range, Bool immutable, int num_values, INT32 *values); +/* + * Init xinerama specific extension parts + */ +void RRXineramaExtensionInit(void); + #endif /* _XSERVER_RANDRSTR_PRIV_H_ */