diff options
Diffstat (limited to 'Xi/extinit.c')
-rw-r--r-- | Xi/extinit.c | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/Xi/extinit.c b/Xi/extinit.c index 613472ab6..7460d71ee 100644 --- a/Xi/extinit.c +++ b/Xi/extinit.c @@ -122,6 +122,7 @@ SOFTWARE. #include "ungrdevk.h" #include "warpdevp.h" #include "xiselev.h" +#include "xiproperty.c" static Mask lastExtEventMask = 1; @@ -217,7 +218,13 @@ static int (*ProcIVector[])(ClientPtr) = { ProcXSetClientPointer, /* 42 */ ProcXGetClientPointer, /* 43 */ ProcXiSelectEvent, /* 44 */ - ProcXExtendedGrabDevice /* 45 */ + ProcXExtendedGrabDevice, /* 45 */ + ProcXListDeviceProperties, /* 46 */ + ProcXQueryDeviceProperty, /* 47 */ + ProcXConfigureDeviceProperty, /* 48 */ + ProcXChangeDeviceProperty, /* 49 */ + ProcXDeleteDeviceProperty, /* 50 */ + ProcXGetDeviceProperty /* 51 */ }; /* For swapped clients */ @@ -267,7 +274,13 @@ static int (*SProcIVector[])(ClientPtr) = { SProcXSetClientPointer, /* 42 */ SProcXGetClientPointer, /* 43 */ SProcXiSelectEvent, /* 44 */ - SProcXExtendedGrabDevice /* 45 */ + SProcXExtendedGrabDevice, /* 45 */ + SProcXListDeviceProperties, /* 46 */ + SProcXQueryDeviceProperty, /* 47 */ + SProcXConfigureDeviceProperty, /* 48 */ + SProcXChangeDeviceProperty, /* 49 */ + SProcXDeleteDeviceProperty, /* 50 */ + SProcXGetDeviceProperty /* 51 */ }; /***************************************************************** |