2024-04-22 18:56:53 +02:00
|
|
|
/* 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"
|
2024-04-22 20:23:18 +02:00
|
|
|
#include "include/input.h"
|
2024-04-22 18:56:53 +02:00
|
|
|
#include "mi/mipointer.h"
|
|
|
|
|
|
|
|
|
|
Bool miPointerInitialize(ScreenPtr pScreen, miPointerSpriteFuncPtr spriteFuncs,
|
|
|
|
|
miPointerScreenFuncPtr screenFuncs, Bool waitForUpdate);
|
2024-04-22 20:23:18 +02:00
|
|
|
void miPointerWarpCursor(DeviceIntPtr pDev, ScreenPtr pScreen, int x, int y);
|
2024-04-22 18:56:53 +02:00
|
|
|
|
|
|
|
|
#endif /* _XSERVER_MI_MIPOINTER_PRIV_H */
|