mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-26 21:40:05 +01:00
public server module API headers shouldn't be clobbered with non-exported definitions, so move them out to private header file. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1290>
15 lines
394 B
C
15 lines
394 B
C
/* SPDX-License-Identifier: MIT OR X11
|
|
*
|
|
* Copyright © 2024 Enrico Weigelt, metux IT consult <info@metux.net>
|
|
*/
|
|
#ifndef _XSERVER__XF86XINPUT_H
|
|
#define _XSERVER__XF86XINPUT_H
|
|
|
|
#include "xf86Xinput.h"
|
|
|
|
extern InputInfoPtr xf86InputDevs;
|
|
|
|
int xf86NewInputDevice(InputInfoPtr pInfo, DeviceIntPtr *pdev, BOOL is_auto);
|
|
InputInfoPtr xf86AllocateInput(void);
|
|
|
|
#endif /* _XSERVER__XF86XINPUT_H */
|