diff options
author | marha <marha@users.sourceforge.net> | 2010-03-18 14:01:30 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2010-03-18 14:01:30 +0000 |
commit | d792a6e870288fd8f0baf9943caf1628224b764c (patch) | |
tree | 84a7d544c1df15dffe7e18bf9cf0884250b831fc /xorg-server/dix | |
parent | ed47063ec4933a51ef0f2f7d667b8178a86b6b12 (diff) | |
parent | 1bee0ef6e6bd055ba9083c1b3863549b8a9093cc (diff) | |
download | vcxsrv-d792a6e870288fd8f0baf9943caf1628224b764c.tar.gz vcxsrv-d792a6e870288fd8f0baf9943caf1628224b764c.tar.bz2 vcxsrv-d792a6e870288fd8f0baf9943caf1628224b764c.zip |
svn merge "^/branches/released" .1.7.99.902
increased version number
Diffstat (limited to 'xorg-server/dix')
-rw-r--r-- | xorg-server/dix/events.c | 28 |
1 files changed, 1 insertions, 27 deletions
diff --git a/xorg-server/dix/events.c b/xorg-server/dix/events.c index 0918d4082..811f23b65 100644 --- a/xorg-server/dix/events.c +++ b/xorg-server/dix/events.c @@ -253,33 +253,7 @@ extern BOOL EventIsKeyRepeat(xEvent *event); */ InputInfo inputInfo; -/** - * syncEvents is the global structure for queued events. - * - * Devices can be frozen through GrabModeSync pointer grabs. If this is the - * case, events from these devices are added to "pending" instead of being - * processed normally. When the device is unfrozen, events in "pending" are - * replayed and processed as if they would come from the device directly. - */ -static struct { - QdEventPtr pending, /**< list of queued events */ - *pendtail; /**< last event in list */ - /** The device to replay events for. Only set in AllowEvents(), in which - * case it is set to the device specified in the request. */ - DeviceIntPtr replayDev; /* kludgy rock to put flag for */ - - /** - * The window the events are supposed to be replayed on. - * This window may be set to the grab's window (but only when - * Replay{Pointer|Keyboard} is given in the XAllowEvents() - * request. */ - WindowPtr replayWin; /* ComputeFreezes */ - /** - * Flag to indicate whether we're in the process of - * replaying events. Only set in ComputeFreezes(). */ - Bool playingEvents; - TimeStamp time; -} syncEvents; +EventSyncInfoRec syncEvents; /** * The root window the given device is currently on. |