diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2009-04-15 22:17:15 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2009-04-19 22:28:11 +1000 |
commit | eeb1e4cd254c047539933c3b886037e67ef30762 (patch) | |
tree | dee00b65221250091a255adbc0a5fa812b16b68e /Xi/extinit.c | |
parent | 74d0fc3aee05bc4f505274d81dd44c0d2b4368ff (diff) |
Xi: add support for XIAllowEvents.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'Xi/extinit.c')
-rw-r--r-- | Xi/extinit.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Xi/extinit.c b/Xi/extinit.c index 9d3b5e613..9628dffb8 100644 --- a/Xi/extinit.c +++ b/Xi/extinit.c @@ -119,6 +119,7 @@ SOFTWARE. #include "ungrdevb.h" #include "ungrdevk.h" #include "warpdevp.h" +#include "xiallowev.h" #include "xiselectev.h" #include "xigrabdev.h" #include "xisetdevfocus.h" @@ -245,7 +246,8 @@ static int (*ProcIVector[])(ClientPtr) = { ProcXISetDeviceFocus, /* 49 */ ProcXIGetDeviceFocus, /* 50 */ ProcXIGrabDevice, /* 51 */ - ProcXIUngrabDevice /* 52 */ + ProcXIUngrabDevice, /* 52 */ + ProcXIAllowEvents /* 53 */ }; /* For swapped clients */ @@ -302,7 +304,8 @@ static int (*SProcIVector[])(ClientPtr) = { SProcXISetDeviceFocus, /* 49 */ SProcXIGetDeviceFocus, /* 50 */ SProcXIGrabDevice, /* 51 */ - SProcXIUngrabDevice /* 52 */ + SProcXIUngrabDevice, /* 52 */ + SProcXIAllowEvents /* 53 */ }; /***************************************************************** |