From ed9c48a0301015a6ab2f762c14e2dbafca107f14 Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Tue, 30 Apr 2024 17:59:42 +0200 Subject: [PATCH] xv: unexport XvPortNotifyRec Not used by any drivers, so no need to keep it exported. Signed-off-by: Enrico Weigelt, metux IT consult Part-of: --- Xext/xvdix.h | 6 +----- Xext/xvdix_priv.h | 6 ++++++ 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/Xext/xvdix.h b/Xext/xvdix.h index 8633dead9..e2646bbfb 100644 --- a/Xext/xvdix.h +++ b/Xext/xvdix.h @@ -70,11 +70,7 @@ typedef struct { ClientPtr client; } XvGrabRec, *XvGrabPtr; -typedef struct _XvPortNotifyRec { - struct _XvPortNotifyRec *next; - ClientPtr client; - unsigned long id; -} XvPortNotifyRec, *XvPortNotifyPtr; +typedef struct _XvPortNotifyRec *XvPortNotifyPtr; typedef struct { int id; diff --git a/Xext/xvdix_priv.h b/Xext/xvdix_priv.h index 62fd47843..f304dbc73 100644 --- a/Xext/xvdix_priv.h +++ b/Xext/xvdix_priv.h @@ -31,6 +31,12 @@ typedef struct { CloseScreenProcPtr CloseScreen; } XvScreenRec, *XvScreenPtr; +typedef struct _XvPortNotifyRec { + struct _XvPortNotifyRec *next; + ClientPtr client; + unsigned long id; +} XvPortNotifyRec, *XvPortNotifyPtr; + extern int XvReqCode; extern int XvErrorBase;