xext: add/fix include guards where missing/broken

Signed-off-by: Mike Gelfand <mikedld@mikedld.com>
This commit is contained in:
Mike Gelfand 2025-06-24 22:50:14 +01:00 committed by Enrico Weigelt
parent 87c8520ba3
commit b5d569a884
4 changed files with 14 additions and 1 deletions

View File

@ -2,7 +2,9 @@
* *
* Copyright © 2024 Enrico Weigelt, metux IT consult <info@metux.net> * Copyright © 2024 Enrico Weigelt, metux IT consult <info@metux.net>
*/ */
#ifndef _XORG_GEEXT_PRIV_H #ifndef _XORG_GEEXT_PRIV_H
#define _XORG_GEEXT_PRIV_H
#include <X11/Xproto.h> #include <X11/Xproto.h>

View File

@ -1,8 +1,10 @@
/* /*
* Server dispatcher function replacements * Server dispatcher function replacements
*/ */
#ifndef XSERVER_PANORAMIXH_H
#define XSERVER_PANORAMIXH_H
extern int PanoramiXCreateWindow(ClientPtr client); extern int PanoramiXCreateWindow(ClientPtr client);
extern int PanoramiXChangeWindowAttributes(ClientPtr client); extern int PanoramiXChangeWindowAttributes(ClientPtr client);
extern int PanoramiXDestroyWindow(ClientPtr client); extern int PanoramiXDestroyWindow(ClientPtr client);
@ -71,3 +73,5 @@ extern int connBlockScreenStart;
extern xConnSetupPrefix connSetupPrefix; extern xConnSetupPrefix connSetupPrefix;
extern int (*SavedProcVector[256]) (ClientPtr client); extern int (*SavedProcVector[256]) (ClientPtr client);
#endif /* XSERVER_PANORAMIXH_H */

View File

@ -1,2 +1,7 @@
#ifndef XSERVER_XVDISP_H
#define XSERVER_XVDISP_H
extern void XineramifyXv(void); extern void XineramifyXv(void);
extern int xvUseXinerama; extern int xvUseXinerama;
#endif /* XSERVER_XVDISP_H */

View File

@ -2,7 +2,9 @@
* *
* Copyright © 2024 Enrico Weigelt, metux IT consult <info@metux.net> * Copyright © 2024 Enrico Weigelt, metux IT consult <info@metux.net>
*/ */
#ifndef _XORG_XVDIX_PRIV_H #ifndef _XORG_XVDIX_PRIV_H
#define _XORG_XVDIX_PRIV_H
#include <X11/Xdefs.h> #include <X11/Xdefs.h>