mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-20 04:40:02 +01:00
fix warning on duplicate typedef: > ../composite/compositeext_priv.h:11:25: warning: redefinition of typedef 'ScreenPtr' is a C11 feature [-Wtypedef-redefinition] > typedef struct _Screen *ScreenPtr; > ^ > ../include/screenint.h:55:25: note: previous definition is here > typedef struct _Screen *ScreenPtr; > ^ Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1430>
17 lines
504 B
C
17 lines
504 B
C
/* SPDX-License-Identifier: MIT OR X11
|
|
*
|
|
* Copyright © 1987, 1998 The Open Group
|
|
* Copyright © 2024 Enrico Weigelt, metux IT consult <info@metux.net>
|
|
*/
|
|
#ifndef _XSERVER_COMPOSITEEXT_PRIV_H_
|
|
#define _XSERVER_COMPOSITEEXT_PRIV_H_
|
|
|
|
#include <X11/X.h>
|
|
|
|
#include "screenint.h"
|
|
|
|
Bool CompositeIsImplicitRedirectException(ScreenPtr pScreen,
|
|
XID parentVisual,
|
|
XID winVisual);
|
|
|
|
#endif /* _XSERVER_COMPOSITEEXT_PRIV_H_ */
|