xv: unexport XvScreenRec and XvScreenPtr
Not used by any drivers, so no need to keep them 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
a952b93d0d
commit
58a2fb8b6f
|
@ -173,15 +173,6 @@ typedef struct _XvPortRec {
|
||||||
DevUnion devPriv;
|
DevUnion devPriv;
|
||||||
} XvPortRec, *XvPortPtr;
|
} XvPortRec, *XvPortPtr;
|
||||||
|
|
||||||
typedef struct {
|
|
||||||
int version, revision;
|
|
||||||
int nAdaptors;
|
|
||||||
XvAdaptorPtr pAdaptors;
|
|
||||||
DestroyWindowProcPtr DestroyWindow;
|
|
||||||
DestroyPixmapProcPtr DestroyPixmap;
|
|
||||||
CloseScreenProcPtr CloseScreen;
|
|
||||||
} XvScreenRec, *XvScreenPtr;
|
|
||||||
|
|
||||||
extern _X_EXPORT int XvScreenInit(ScreenPtr);
|
extern _X_EXPORT int XvScreenInit(ScreenPtr);
|
||||||
extern _X_EXPORT DevPrivateKey XvGetScreenKey(void);
|
extern _X_EXPORT DevPrivateKey XvGetScreenKey(void);
|
||||||
extern _X_EXPORT unsigned long XvGetRTPort(void);
|
extern _X_EXPORT unsigned long XvGetRTPort(void);
|
||||||
|
|
|
@ -22,6 +22,15 @@
|
||||||
|
|
||||||
#define _XvBadPort (XvBadPort+XvErrorBase)
|
#define _XvBadPort (XvBadPort+XvErrorBase)
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
int version, revision;
|
||||||
|
int nAdaptors;
|
||||||
|
XvAdaptorPtr pAdaptors;
|
||||||
|
DestroyWindowProcPtr DestroyWindow;
|
||||||
|
DestroyPixmapProcPtr DestroyPixmap;
|
||||||
|
CloseScreenProcPtr CloseScreen;
|
||||||
|
} XvScreenRec, *XvScreenPtr;
|
||||||
|
|
||||||
extern int XvReqCode;
|
extern int XvReqCode;
|
||||||
extern int XvErrorBase;
|
extern int XvErrorBase;
|
||||||
|
|
||||||
|
|
|
@ -25,21 +25,21 @@
|
||||||
* the sale, use or other dealings in this Software without prior written
|
* the sale, use or other dealings in this Software without prior written
|
||||||
* authorization from the copyright holder(s) and author(s).
|
* authorization from the copyright holder(s) and author(s).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifdef HAVE_XORG_CONFIG_H
|
#ifdef HAVE_XORG_CONFIG_H
|
||||||
#include <xorg-config.h>
|
#include <xorg-config.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include <X11/X.h>
|
||||||
|
#include <X11/Xproto.h>
|
||||||
|
|
||||||
|
#include "Xext/xvdix_priv.h"
|
||||||
|
|
||||||
#include "misc.h"
|
#include "misc.h"
|
||||||
#include "xf86.h"
|
#include "xf86.h"
|
||||||
#include "xf86_OSproc.h"
|
#include "xf86_OSproc.h"
|
||||||
|
|
||||||
#include <X11/X.h>
|
|
||||||
#include <X11/Xproto.h>
|
|
||||||
#include "scrnintstr.h"
|
#include "scrnintstr.h"
|
||||||
#include "resource.h"
|
#include "resource.h"
|
||||||
#include "dixstruct.h"
|
#include "dixstruct.h"
|
||||||
|
|
||||||
#include "xf86xvpriv.h"
|
#include "xf86xvpriv.h"
|
||||||
#include "xf86xvmc.h"
|
#include "xf86xvmc.h"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue