Compare commits
2 Commits
master
...
test/ones-
Author | SHA1 | Date | |
---|---|---|---|
|
fc5cc53ac4 | ||
|
847de561c5 |
|
@ -34,6 +34,7 @@ Equipment Corporation.
|
|||
#include <X11/Xproto.h>
|
||||
|
||||
#include "dix/dix_priv.h"
|
||||
#include "os/osdep.h"
|
||||
|
||||
#include "windowstr.h"
|
||||
#include "dixfontstr.h"
|
||||
|
|
|
@ -38,6 +38,7 @@ in this Software without prior written authorization from the X Consortium.
|
|||
#include "dix/colormap_priv.h"
|
||||
#include "dix/cursor_priv.h"
|
||||
#include "dix/dix_priv.h"
|
||||
#include "os/osdep.h"
|
||||
#include "os/screensaver.h"
|
||||
|
||||
#include "misc.h"
|
||||
|
@ -64,6 +65,10 @@ in this Software without prior written authorization from the X Consortium.
|
|||
#include "protocol-versions.h"
|
||||
#include "extinit_priv.h"
|
||||
|
||||
// temporary workaround for win32/mingw32 name clash
|
||||
// see: https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1355
|
||||
// #undef CreateWindow
|
||||
|
||||
static int ScreenSaverEventBase = 0;
|
||||
|
||||
static Bool ScreenSaverHandle(ScreenPtr pScreen, int xstate, Bool force);
|
||||
|
|
|
@ -37,6 +37,7 @@ in this Software without prior written authorization from The Open Group.
|
|||
#include "include/extinit_priv.h"
|
||||
#include "os/audit.h"
|
||||
#include "os/auth.h"
|
||||
#include "os/osdep.h"
|
||||
|
||||
#include "scrnintstr.h"
|
||||
#include "inputstr.h"
|
||||
|
|
|
@ -61,6 +61,7 @@ PERFORMANCE OF THIS SOFTWARE.
|
|||
#include <X11/extensions/syncproto.h>
|
||||
|
||||
#include "dix/dix_priv.h"
|
||||
#include "os/osdep.h"
|
||||
|
||||
#include "scrnintstr.h"
|
||||
#include "os.h"
|
||||
|
|
|
@ -46,6 +46,7 @@
|
|||
#endif
|
||||
|
||||
#include "dix/dix_priv.h"
|
||||
#include "os/osdep.h"
|
||||
|
||||
#include "compint.h"
|
||||
#include "compositeext.h"
|
||||
|
|
|
@ -61,6 +61,7 @@ SOFTWARE.
|
|||
#include "dix/exevents_priv.h"
|
||||
#include "dix/input_priv.h"
|
||||
#include "dix/ptrveloc_priv.h"
|
||||
#include "os/osdep.h"
|
||||
#include "xkb/xkbsrv_priv.h"
|
||||
|
||||
#include "misc.h"
|
||||
|
|
1
dix/gc.c
1
dix/gc.c
|
@ -54,6 +54,7 @@ SOFTWARE.
|
|||
#include <X11/Xproto.h>
|
||||
|
||||
#include "dix/gc_priv.h"
|
||||
#include "os/osdep.h"
|
||||
|
||||
#include "misc.h"
|
||||
#include "resource.h"
|
||||
|
|
|
@ -24,6 +24,8 @@
|
|||
#include <dix-config.h>
|
||||
#endif
|
||||
|
||||
#include "os/osdep.h"
|
||||
|
||||
#include "fb.h"
|
||||
|
||||
Bool
|
||||
|
|
|
@ -390,8 +390,6 @@ extern _X_EXPORT void SwapShorts(short *list, unsigned long count);
|
|||
|
||||
extern _X_EXPORT void MakePredeclaredAtoms(void);
|
||||
|
||||
extern _X_EXPORT int Ones(unsigned long /*mask */ );
|
||||
|
||||
typedef struct _xPoint *DDXPointPtr;
|
||||
typedef struct pixman_box16 *BoxPtr;
|
||||
typedef struct _xEvent *xEventPtr;
|
||||
|
|
|
@ -215,4 +215,6 @@ extern Bool CoreDump;
|
|||
extern Bool NoListenAll;
|
||||
extern Bool AllowByteSwappedClients;
|
||||
|
||||
int Ones(unsigned long mask);
|
||||
|
||||
#endif /* _OSDEP_H_ */
|
||||
|
|
|
@ -25,6 +25,8 @@
|
|||
#include <dix-config.h>
|
||||
#endif
|
||||
|
||||
#include "os/osdep.h"
|
||||
|
||||
#include "scrnintstr.h"
|
||||
#include "gcstruct.h"
|
||||
#include "pixmapstr.h"
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
#endif
|
||||
|
||||
#include "dix/colormap_priv.h"
|
||||
#include "os/osdep.h"
|
||||
|
||||
#include "misc.h"
|
||||
#include "scrnintstr.h"
|
||||
|
|
|
@ -35,6 +35,7 @@
|
|||
|
||||
#include "dix/cursor_priv.h"
|
||||
#include "dix/dix_priv.h"
|
||||
#include "os/osdep.h"
|
||||
|
||||
#include "misc.h"
|
||||
#include "os.h"
|
||||
|
|
Loading…
Reference in New Issue