mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-30 15:30:08 +01:00
The typdef and defines from dgaproc.h are used by drivers, so it needs to remain part of the public API. But no need to clutter the public header with non-exported function declarations. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1323>
19 lines
601 B
C
19 lines
601 B
C
/* SPDX-License-Identifier: MIT OR X11
|
|
*
|
|
* Copyright © 2024 Enrico Weigelt, metux IT consult <info@metux.net>
|
|
*/
|
|
#ifndef __XSERVER_XFREE86_DGAPROC_H
|
|
#define __XSERVER_XFREE86_DGAPROC_H
|
|
|
|
#include "screenint.h"
|
|
#include "input.h"
|
|
|
|
Bool DGAScreenAvailable(ScreenPtr pScreen);
|
|
Bool DGAActive(int Index);
|
|
|
|
Bool DGAVTSwitch(void);
|
|
Bool DGAStealButtonEvent(DeviceIntPtr dev, int Index, int button, int is_down);
|
|
Bool DGAStealMotionEvent(DeviceIntPtr dev, int Index, int dx, int dy);
|
|
Bool DGAStealKeyEvent(DeviceIntPtr dev, int Index, int key_code, int is_down);
|
|
|
|
#endif /* __XSERVER_XFREE86_DGAPROC_H */
|