Imported Upstream version 1.15.1
[deb_xorg-server.git] / hw / xnest / Handlers.c
CommitLineData
a09e091a
JB
1/*
2
3Copyright 1993 by Davor Matic
4
5Permission to use, copy, modify, distribute, and sell this software
6and its documentation for any purpose is hereby granted without fee,
7provided that the above copyright notice appear in all copies and that
8both that copyright notice and this permission notice appear in
9supporting documentation. Davor Matic makes no representations about
10the suitability of this software for any purpose. It is provided "as
11is" without express or implied warranty.
12
13*/
14
15#ifdef HAVE_XNEST_CONFIG_H
16#include <xnest-config.h>
17#endif
18
19#include <X11/X.h>
20#include <X11/Xproto.h>
21#include "screenint.h"
22#include "input.h"
23#include "misc.h"
24#include "scrnintstr.h"
25#include "windowstr.h"
26#include "servermd.h"
27
28#include "Xnest.h"
29
30#include "Display.h"
31#include "Events.h"
32#include "Handlers.h"
33
34void
35xnestBlockHandler(pointer blockData, OSTimePtr pTimeout, pointer pReadMask)
36{
37 xnestCollectExposures();
38 XFlush(xnestDisplay);
39}
40
41void
42xnestWakeupHandler(pointer blockData, int result, pointer pReadMask)
43{
44 xnestCollectEvents();
45}