mi: unexport miPointerInitialize()
It's not used by any drivers/modules, 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
c8daf76c3e
commit
44c2e08877
|
@ -25,12 +25,16 @@
|
|||
*/
|
||||
|
||||
#include <dix-config.h>
|
||||
|
||||
#include <xcb/render.h>
|
||||
#include <xcb/xcb_renderutil.h>
|
||||
|
||||
#include "mi/mipointer_priv.h"
|
||||
|
||||
#include "ephyr.h"
|
||||
#include "ephyrlog.h"
|
||||
#include "hostx.h"
|
||||
#include "cursorstr.h"
|
||||
#include <xcb/render.h>
|
||||
#include <xcb/xcb_renderutil.h>
|
||||
|
||||
static DevPrivateKeyRec ephyrCursorPrivateKey;
|
||||
|
||||
|
|
|
@ -26,6 +26,8 @@
|
|||
|
||||
#include <xwayland-config.h>
|
||||
|
||||
#include "mi/mipointer_priv.h"
|
||||
|
||||
#include "scrnintstr.h"
|
||||
#include "servermd.h"
|
||||
#include "cursorstr.h"
|
||||
|
|
|
@ -55,6 +55,7 @@ in this Software without prior written authorization from The Open Group.
|
|||
#include "dix/cursor_priv.h"
|
||||
#include "dix/dix_priv.h"
|
||||
#include "dix/input_priv.h"
|
||||
#include "mi/mipointer_priv.h"
|
||||
|
||||
#include "misc.h"
|
||||
#include "windowstr.h"
|
||||
|
|
|
@ -77,14 +77,6 @@ extern _X_EXPORT Bool miDCInitialize(ScreenPtr /*pScreen */ ,
|
|||
miPointerScreenFuncPtr /*screenFuncs */
|
||||
);
|
||||
|
||||
extern _X_EXPORT Bool miPointerInitialize(ScreenPtr /*pScreen */ ,
|
||||
miPointerSpriteFuncPtr
|
||||
/*spriteFuncs */ ,
|
||||
miPointerScreenFuncPtr
|
||||
/*screenFuncs */ ,
|
||||
Bool /*waitForUpdate */
|
||||
);
|
||||
|
||||
extern _X_EXPORT void miPointerWarpCursor(DeviceIntPtr /*pDev */ ,
|
||||
ScreenPtr /*pScreen */ ,
|
||||
int /*x */ ,
|
||||
|
|
|
@ -0,0 +1,16 @@
|
|||
/* SPDX-License-Identifier: MIT OR X11
|
||||
*
|
||||
* Copyright © 2024 Enrico Weigelt, metux IT consult <info@metux.net>
|
||||
*/
|
||||
#ifndef _XSERVER_MI_MIPOINTER_PRIV_H
|
||||
#define _XSERVER_MI_MIPOINTER_PRIV_H
|
||||
|
||||
#include <X11/Xdefs.h>
|
||||
|
||||
#include "dix/screenint_priv.h"
|
||||
#include "mi/mipointer.h"
|
||||
|
||||
Bool miPointerInitialize(ScreenPtr pScreen, miPointerSpriteFuncPtr spriteFuncs,
|
||||
miPointerScreenFuncPtr screenFuncs, Bool waitForUpdate);
|
||||
|
||||
#endif /* _XSERVER_MI_MIPOINTER_PRIV_H */
|
|
@ -38,6 +38,7 @@ in this Software without prior written authorization from The Open Group.
|
|||
|
||||
#include "dix/colormap_priv.h"
|
||||
#include "dix/dix_priv.h"
|
||||
#include "mi/mipointer_priv.h"
|
||||
|
||||
#include "misc.h"
|
||||
#include "pixmapstr.h"
|
||||
|
|
Loading…
Reference in New Issue