mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-24 05:54:08 +00:00
Not used by any (known) driver, 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>
21 lines
706 B
C
21 lines
706 B
C
/* 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 "include/input.h"
|
|
#include "mi/mipointer.h"
|
|
|
|
Bool miPointerInitialize(ScreenPtr pScreen, miPointerSpriteFuncPtr spriteFuncs,
|
|
miPointerScreenFuncPtr screenFuncs, Bool waitForUpdate);
|
|
void miPointerWarpCursor(DeviceIntPtr pDev, ScreenPtr pScreen, int x, int y);
|
|
void miPointerSetScreen(DeviceIntPtr pDev, int screen_num, int x, int y);
|
|
void miPointerUpdateSprite(DeviceIntPtr pDev);
|
|
|
|
#endif /* _XSERVER_MI_MIPOINTER_PRIV_H */
|