From 76aaccc4f3f8f5d154e81c0a5bb92b7308b0eadb Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Fri, 16 May 2025 16:09:03 +0200 Subject: [PATCH] randr: unexport and document RRDeleteAllOutputProperties() Not used by any external drivers, so no need to keep it exported. Signed-off-by: Enrico Weigelt, metux IT consult --- randr/randrstr.h | 5 ----- randr/randrstr_priv.h | 7 +++++++ 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/randr/randrstr.h b/randr/randrstr.h index 3c3f225f1..3a1d8e847 100644 --- a/randr/randrstr.h +++ b/randr/randrstr.h @@ -650,11 +650,6 @@ extern _X_EXPORT Bool extern _X_EXPORT void RROutputDestroy(RROutputPtr output); -/* rrproperty.c */ - -extern _X_EXPORT void - RRDeleteAllOutputProperties(RROutputPtr output); - extern _X_EXPORT RRPropertyValuePtr RRGetOutputProperty(RROutputPtr output, Atom property, Bool pending); diff --git a/randr/randrstr_priv.h b/randr/randrstr_priv.h index 90e389a9f..d0ac2bc7c 100644 --- a/randr/randrstr_priv.h +++ b/randr/randrstr_priv.h @@ -371,4 +371,11 @@ void RROutputInitErrorValue(void); */ void RRPointerScreenConfigured(ScreenPtr pScreen); +/* + * Delete all properties on given output + * + * @param output the output whose properties shall be deleted + */ +void RRDeleteAllOutputProperties(RROutputPtr output); + #endif /* _XSERVER_RANDRSTR_PRIV_H_ */