dix: unexport NewCurrentScreen()
It's not used by external modules/drivers, so no need to export it. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1345>
This commit is contained in:
parent
24d1c08441
commit
bd3c252710
|
@ -38,6 +38,7 @@
|
|||
#include <X11/extensions/XI.h>
|
||||
#include <X11/extensions/XI2proto.h>
|
||||
|
||||
#include "dix/cursor_priv.h"
|
||||
#include "dix/dix_priv.h"
|
||||
|
||||
#include "inputstr.h" /* DeviceIntPtr */
|
||||
|
|
|
@ -10,8 +10,10 @@
|
|||
#include <X11/Xdefs.h>
|
||||
#include <X11/Xmd.h>
|
||||
|
||||
#include "dix/screenint_priv.h"
|
||||
#include "include/cursor.h"
|
||||
#include "include/dix.h"
|
||||
#include "include/input.h"
|
||||
#include "include/window.h"
|
||||
|
||||
extern CursorPtr rootCursor;
|
||||
|
@ -62,4 +64,9 @@ Bool CursorMetricsFromGlyph(FontPtr pfont,
|
|||
|
||||
void CheckCursorConfinement(WindowPtr pWin);
|
||||
|
||||
void NewCurrentScreen(DeviceIntPtr pDev,
|
||||
ScreenPtr newScreen,
|
||||
int x,
|
||||
int y);
|
||||
|
||||
#endif /* _XSERVER_DIX_CURSOR_PRIV_H */
|
||||
|
|
|
@ -20,6 +20,8 @@ is" without express or implied warranty.
|
|||
#include <X11/Xdefs.h>
|
||||
#include <X11/Xproto.h>
|
||||
|
||||
#include "dix/cursor_priv.h"
|
||||
|
||||
#include "screenint.h"
|
||||
#include "input.h"
|
||||
#include "misc.h"
|
||||
|
@ -28,7 +30,6 @@ is" without express or implied warranty.
|
|||
#include "servermd.h"
|
||||
#include "inputstr.h"
|
||||
#include "inpututils.h"
|
||||
|
||||
#include "mi.h"
|
||||
|
||||
#include "Xnest.h"
|
||||
|
|
|
@ -70,11 +70,6 @@ typedef struct _CursorMetric *CursorMetricPtr;
|
|||
extern _X_EXPORT int FreeCursor(void *pCurs,
|
||||
XID cid);
|
||||
|
||||
extern _X_EXPORT void NewCurrentScreen(struct _DeviceIntRec * /*pDev */ ,
|
||||
ScreenPtr /*newScreen */ ,
|
||||
int /*x */ ,
|
||||
int /*y */ );
|
||||
|
||||
extern _X_EXPORT Bool PointerConfinedToScreen(struct _DeviceIntRec * /* pDev */
|
||||
);
|
||||
|
||||
|
|
|
@ -40,6 +40,7 @@ in this Software without prior written authorization from The Open Group.
|
|||
#include <X11/Xmd.h>
|
||||
#include <X11/Xproto.h>
|
||||
|
||||
#include "dix/cursor_priv.h"
|
||||
#include "os/screensaver.h"
|
||||
|
||||
#include "misc.h"
|
||||
|
|
|
@ -54,6 +54,7 @@ in this Software without prior written authorization from The Open Group.
|
|||
#include <X11/Xmd.h>
|
||||
#include <X11/Xproto.h>
|
||||
|
||||
#include "dix/cursor_priv.h"
|
||||
#include "dix/dix_priv.h"
|
||||
#include "dix/input_priv.h"
|
||||
|
||||
|
|
Loading…
Reference in New Issue