mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-24 03:44:06 +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>
13 lines
262 B
C
13 lines
262 B
C
/* SPDX-License-Identifier: MIT OR X11
|
|
*
|
|
* Copyright © 2024 Enrico Weigelt, metux IT consult <info@metux.net>
|
|
*/
|
|
#ifndef _XSERVER_DRI_PRIV_H
|
|
#define _XSERVER_DRI_PRIV_H
|
|
|
|
#include "dri.h"
|
|
|
|
extern Bool DRIExtensionInit(void);
|
|
|
|
#endif /* _XSERVER_DRI_PRIV_H */
|