mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-01-04 18:00:14 +01:00
These aren't used externally (drivers/modules), thus no need to export them. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1345>
17 lines
436 B
C
17 lines
436 B
C
/* SPDX-License-Identifier: MIT OR X11
|
|
*
|
|
* Copyright © 2024 Enrico Weigelt, metux IT consult <info@metux.net>
|
|
*/
|
|
#ifndef _XSERVER_DIX_CURSOR_PRIV_H
|
|
#define _XSERVER_DIX_CURSOR_PRIV_H
|
|
|
|
#include "include/cursor.h"
|
|
|
|
extern CursorPtr rootCursor;
|
|
|
|
/* reference counting */
|
|
CursorPtr RefCursor(CursorPtr cursor);
|
|
CursorPtr UnrefCursor(CursorPtr cursor);
|
|
int CursorRefCount(ConstCursorPtr cursor);
|
|
|
|
#endif /* _XSERVER_DIX_CURSOR_PRIV_H */
|