From be650cbe1007b9f5d18f106893e8314b023a8788 Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Thu, 29 Feb 2024 13:59:41 +0100 Subject: [PATCH] (submit/cursor-api) dix: unexport PointerConfinedToScreen() It's not used by external modules, so no need to export it. Signed-off-by: Enrico Weigelt, metux IT consult --- dix/cursor_priv.h | 2 ++ include/cursor.h | 3 --- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/dix/cursor_priv.h b/dix/cursor_priv.h index 3488f102c..4413753ba 100644 --- a/dix/cursor_priv.h +++ b/dix/cursor_priv.h @@ -69,4 +69,6 @@ void NewCurrentScreen(DeviceIntPtr pDev, int x, int y); +Bool PointerConfinedToScreen(DeviceIntPtr pDev); + #endif /* _XSERVER_DIX_CURSOR_PRIV_H */ diff --git a/include/cursor.h b/include/cursor.h index 43f77ba44..7610accea 100644 --- a/include/cursor.h +++ b/include/cursor.h @@ -65,9 +65,6 @@ typedef struct _CursorMetric *CursorMetricPtr; extern _X_EXPORT int FreeCursor(void *pCurs, XID cid); -extern _X_EXPORT Bool PointerConfinedToScreen(struct _DeviceIntRec * /* pDev */ - ); - extern _X_EXPORT void GetSpritePosition(struct _DeviceIntRec * /* pDev */ , int * /*px */ , int * /*py */ );