xext: add/fix include guards where missing/broken
Signed-off-by: Mike Gelfand <mikedld@mikedld.com>
This commit is contained in:
parent
87c8520ba3
commit
b5d569a884
|
@ -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>
|
||||||
|
|
||||||
|
|
|
@ -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 */
|
||||||
|
|
|
@ -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 */
|
||||||
|
|
|
@ -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>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue