mi: unexport miPointerSetScreen()
Not used by any (known) 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/1505>
This commit is contained in:
parent
6c04f94f3b
commit
64cd343569
|
@ -39,6 +39,7 @@
|
||||||
#include "win.h"
|
#include "win.h"
|
||||||
|
|
||||||
#include "dix/dix_priv.h"
|
#include "dix/dix_priv.h"
|
||||||
|
#include "mi/mipointer_priv.h"
|
||||||
|
|
||||||
#include "dixevents.h"
|
#include "dixevents.h"
|
||||||
#include "winmultiwindowclass.h"
|
#include "winmultiwindowclass.h"
|
||||||
|
|
|
@ -37,6 +37,9 @@
|
||||||
#endif
|
#endif
|
||||||
#include "win.h"
|
#include "win.h"
|
||||||
#include <commctrl.h>
|
#include <commctrl.h>
|
||||||
|
|
||||||
|
#include "mi/mipointer_priv.h"
|
||||||
|
|
||||||
#include "winprefs.h"
|
#include "winprefs.h"
|
||||||
#include "winconfig.h"
|
#include "winconfig.h"
|
||||||
#include "winmsg.h"
|
#include "winmsg.h"
|
||||||
|
|
|
@ -79,8 +79,6 @@ extern _X_EXPORT Bool miDCInitialize(ScreenPtr /*pScreen */ ,
|
||||||
|
|
||||||
extern _X_EXPORT ScreenPtr
|
extern _X_EXPORT ScreenPtr
|
||||||
miPointerGetScreen(DeviceIntPtr pDev);
|
miPointerGetScreen(DeviceIntPtr pDev);
|
||||||
extern _X_EXPORT void
|
|
||||||
miPointerSetScreen(DeviceIntPtr pDev, int screen_num, int x, int y);
|
|
||||||
|
|
||||||
/* Returns the current cursor position. */
|
/* Returns the current cursor position. */
|
||||||
extern _X_EXPORT void
|
extern _X_EXPORT void
|
||||||
|
|
|
@ -14,5 +14,6 @@
|
||||||
Bool miPointerInitialize(ScreenPtr pScreen, miPointerSpriteFuncPtr spriteFuncs,
|
Bool miPointerInitialize(ScreenPtr pScreen, miPointerSpriteFuncPtr spriteFuncs,
|
||||||
miPointerScreenFuncPtr screenFuncs, Bool waitForUpdate);
|
miPointerScreenFuncPtr screenFuncs, Bool waitForUpdate);
|
||||||
void miPointerWarpCursor(DeviceIntPtr pDev, ScreenPtr pScreen, int x, int y);
|
void miPointerWarpCursor(DeviceIntPtr pDev, ScreenPtr pScreen, int x, int y);
|
||||||
|
void miPointerSetScreen(DeviceIntPtr pDev, int screen_num, int x, int y);
|
||||||
|
|
||||||
#endif /* _XSERVER_MI_MIPOINTER_PRIV_H */
|
#endif /* _XSERVER_MI_MIPOINTER_PRIV_H */
|
||||||
|
|
Loading…
Reference in New Issue