mirror of
https://github.com/X11Libre/xserver.git
synced 2026-04-06 17:24:45 +00: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>
14 lines
329 B
C
14 lines
329 B
C
/* SPDX-License-Identifier: MIT OR X11
|
|
*
|
|
* Copyright © 2024 Enrico Weigelt, metux IT consult <info@metux.net>
|
|
*/
|
|
#ifndef _XSERVER_DRI2_PRIV_H_
|
|
#define _XSERVER_DRI2_PRIV_H_
|
|
|
|
#include "dri2.h"
|
|
|
|
extern CARD8 dri2_major; /* version of DRI2 supported by DDX */
|
|
extern CARD8 dri2_minor;
|
|
|
|
#endif /* _XSERVER_DRI2_PRIV_H_ */
|