xv: unexport XvPortNotifyRec
Not used by any drivers, so no need to keep it exported. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1512>
This commit is contained in:
parent
58a2fb8b6f
commit
ed9c48a030
|
@ -70,11 +70,7 @@ typedef struct {
|
||||||
ClientPtr client;
|
ClientPtr client;
|
||||||
} XvGrabRec, *XvGrabPtr;
|
} XvGrabRec, *XvGrabPtr;
|
||||||
|
|
||||||
typedef struct _XvPortNotifyRec {
|
typedef struct _XvPortNotifyRec *XvPortNotifyPtr;
|
||||||
struct _XvPortNotifyRec *next;
|
|
||||||
ClientPtr client;
|
|
||||||
unsigned long id;
|
|
||||||
} XvPortNotifyRec, *XvPortNotifyPtr;
|
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
int id;
|
int id;
|
||||||
|
|
|
@ -31,6 +31,12 @@ typedef struct {
|
||||||
CloseScreenProcPtr CloseScreen;
|
CloseScreenProcPtr CloseScreen;
|
||||||
} XvScreenRec, *XvScreenPtr;
|
} XvScreenRec, *XvScreenPtr;
|
||||||
|
|
||||||
|
typedef struct _XvPortNotifyRec {
|
||||||
|
struct _XvPortNotifyRec *next;
|
||||||
|
ClientPtr client;
|
||||||
|
unsigned long id;
|
||||||
|
} XvPortNotifyRec, *XvPortNotifyPtr;
|
||||||
|
|
||||||
extern int XvReqCode;
|
extern int XvReqCode;
|
||||||
extern int XvErrorBase;
|
extern int XvErrorBase;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue