XIproto.h
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:39k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: XIproto.h,v 1.5 2001/02/09 02:03:24 xorgcvs Exp $ */
  2. /************************************************************
  3. Copyright 1989, 1998  The Open Group
  4. Permission to use, copy, modify, distribute, and sell this software and its
  5. documentation for any purpose is hereby granted without fee, provided that
  6. the above copyright notice appear in all copies and that both that
  7. copyright notice and this permission notice appear in supporting
  8. documentation.
  9. The above copyright notice and this permission notice shall be included in
  10. all copies or substantial portions of the Software.
  11. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  12. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  13. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  14. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  15. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  16. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  17. Except as contained in this notice, the name of The Open Group shall not be
  18. used in advertising or otherwise to promote the sale, use or other dealings
  19. in this Software without prior written authorization from The Open Group.
  20. Copyright 1989 by Hewlett-Packard Company, Palo Alto, California.
  21. All Rights Reserved
  22. Permission to use, copy, modify, and distribute this software and its
  23. documentation for any purpose and without fee is hereby granted,
  24. provided that the above copyright notice appear in all copies and that
  25. both that copyright notice and this permission notice appear in
  26. supporting documentation, and that the name of Hewlett-Packard not be
  27. used in advertising or publicity pertaining to distribution of the
  28. software without specific, written prior permission.
  29. HEWLETT-PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  30. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  31. HEWLETT-PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  32. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  33. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  34. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  35. SOFTWARE.
  36. ********************************************************/
  37. /* $XFree86: xc/include/extensions/XIproto.h,v 1.4 2001/01/17 17:53:17 dawes Exp $ */
  38. #ifndef _XIPROTO_H
  39. #define _XIPROTO_H
  40. #include <X11/Xproto.h>
  41. #include <X11/X.h>
  42. /* make sure types have right sizes for protocol structures. */
  43. #define Window CARD32
  44. #define Time CARD32
  45. #define KeyCode CARD8
  46. /*********************************************************
  47.  *
  48.  * number of events, errors, and extension name.
  49.  *
  50.  */
  51. #define MORE_EVENTS 0x80
  52. #define DEVICE_BITS 0x7F
  53. #define InputClassBits 0x3F /* bits in mode field for input classes */
  54. #define ModeBitsShift 6 /* amount to shift the remaining bits   */
  55. #define numInputClasses 7
  56. #define IEVENTS 16
  57. #define IERRORS 5
  58. #define CLIENT_REQ 1
  59. typedef struct  _XExtEventInfo
  60.     {
  61.     Mask mask;
  62.     BYTE  type;
  63.     BYTE word;
  64.     } XExtEventInfo;
  65. typedef unsigned char *Pointer;
  66. struct tmask
  67.     {
  68.     Mask mask;
  69.     Pointer     dev;
  70.     };
  71. /*********************************************************
  72.  *
  73.  * Event constants used by library.
  74.  *
  75.  */
  76. #define XI_DeviceValuator 0
  77. #define XI_DeviceKeyPress 1
  78. #define XI_DeviceKeyRelease 2
  79. #define XI_DeviceButtonPress 3
  80. #define XI_DeviceButtonRelease 4
  81. #define XI_DeviceMotionNotify 5
  82. #define XI_DeviceFocusIn 6
  83. #define XI_DeviceFocusOut 7
  84. #define XI_ProximityIn 8
  85. #define XI_ProximityOut 9
  86. #define XI_DeviceStateNotify 10
  87. #define XI_DeviceMappingNotify 11
  88. #define XI_ChangeDeviceNotify 12
  89. #define XI_DeviceKeystateNotify 13
  90. #define XI_DeviceButtonstateNotify 14
  91. #define XI_DevicePresenceNotify 15
  92. /*********************************************************
  93.  *
  94.  * Protocol request constants
  95.  *
  96.  */
  97. #define X_GetExtensionVersion 1
  98. #define X_ListInputDevices 2
  99. #define X_OpenDevice 3
  100. #define X_CloseDevice 4
  101. #define X_SetDeviceMode 5
  102. #define X_SelectExtensionEvent   6
  103. #define X_GetSelectedExtensionEvents 7
  104. #define X_ChangeDeviceDontPropagateList 8
  105. #define X_GetDeviceDontPropagateList  9
  106. #define X_GetDeviceMotionEvents  10
  107. #define X_ChangeKeyboardDevice 11
  108. #define X_ChangePointerDevice 12
  109. #define X_GrabDevice  13
  110. #define X_UngrabDevice   14
  111. #define X_GrabDeviceKey 15
  112. #define X_UngrabDeviceKey 16
  113. #define X_GrabDeviceButton 17
  114. #define X_UngrabDeviceButton 18
  115. #define X_AllowDeviceEvents 19
  116. #define X_GetDeviceFocus 20
  117. #define X_SetDeviceFocus 21
  118. #define X_GetFeedbackControl 22
  119. #define X_ChangeFeedbackControl 23
  120. #define X_GetDeviceKeyMapping 24
  121. #define X_ChangeDeviceKeyMapping 25
  122. #define X_GetDeviceModifierMapping 26
  123. #define X_SetDeviceModifierMapping 27
  124. #define X_GetDeviceButtonMapping 28
  125. #define X_SetDeviceButtonMapping 29
  126. #define X_QueryDeviceState  30
  127. #define X_SendExtensionEvent  31
  128. #define X_DeviceBell 32
  129. #define X_SetDeviceValuators 33
  130. #define X_GetDeviceControl 34
  131. #define X_ChangeDeviceControl 35
  132. /*********************************************************
  133.  *
  134.  * Protocol request and reply structures.
  135.  *
  136.  * GetExtensionVersion.
  137.  *
  138.  */
  139. typedef struct {
  140.     CARD8  reqType;       /* input extension major code   */
  141.     CARD8  ReqType;       /* always X_GetExtensionVersion */
  142.     CARD16  length B16;
  143.     CARD16  nbytes B16;
  144.     CARD8  pad1, pad2;
  145. } xGetExtensionVersionReq;
  146. typedef struct {
  147.     CARD8  repType;   /* X_Reply  */
  148.     CARD8  RepType;        /* always X_GetExtensionVersion */
  149.     CARD16  sequenceNumber B16;
  150.     CARD32  length B32;
  151.     CARD16  major_version B16;
  152.     CARD16  minor_version B16;
  153.     BOOL  present;
  154.     CARD8  pad1, pad2, pad3;
  155.     CARD32  pad01 B32;
  156.     CARD32  pad02 B32;
  157.     CARD32  pad03 B32;
  158.     CARD32  pad04 B32;
  159. } xGetExtensionVersionReply;
  160. /*********************************************************
  161.  *
  162.  * ListInputDevices.
  163.  *
  164.  */
  165. typedef struct {
  166.     CARD8  reqType; /* input extension major code */
  167.     CARD8  ReqType; /* always X_ListInputDevices  */
  168.     CARD16  length B16;
  169. } xListInputDevicesReq;
  170. typedef struct {
  171.     CARD8  repType;   /* X_Reply  */
  172.     CARD8  RepType;        /* always X_ListInputDevices   */
  173.     CARD16  sequenceNumber B16;
  174.     CARD32  length B32;
  175.     CARD8  ndevices;
  176.     CARD8  pad1, pad2, pad3;
  177.     CARD32  pad01 B32;
  178.     CARD32  pad02 B32;
  179.     CARD32  pad03 B32;
  180.     CARD32  pad04 B32;
  181.     CARD32  pad05 B32;
  182. } xListInputDevicesReply;
  183. typedef struct _xDeviceInfo *xDeviceInfoPtr;
  184. typedef struct _xAnyClassinfo *xAnyClassPtr;
  185. typedef struct _xAnyClassinfo {
  186. #if defined(__cplusplus) || defined(c_plusplus)
  187.     CARD8  c_class;
  188. #else
  189.     CARD8  class;
  190. #endif
  191.     CARD8  length;
  192.     } xAnyClassInfo;
  193. typedef struct _xDeviceInfo {
  194.     CARD32 type B32;
  195.     CARD8 id;
  196.     CARD8  num_classes;
  197.     CARD8  use;
  198.     CARD8  pad1;
  199.     } xDeviceInfo;
  200. typedef struct _xKeyInfo *xKeyInfoPtr;
  201. typedef struct _xKeyInfo {
  202. #if defined(__cplusplus) || defined(c_plusplus)
  203.     CARD8  c_class;
  204. #else
  205.     CARD8  class;
  206. #endif
  207.     CARD8  length;
  208.     KeyCode  min_keycode; 
  209.     KeyCode  max_keycode; 
  210.     CARD16  num_keys B16;
  211.     CARD8  pad1,pad2;
  212.     } xKeyInfo;
  213. typedef struct _xButtonInfo *xButtonInfoPtr;
  214. typedef struct _xButtonInfo {
  215. #if defined(__cplusplus) || defined(c_plusplus)
  216.     CARD8  c_class;
  217. #else
  218.     CARD8  class;
  219. #endif
  220.     CARD8  length;
  221.     CARD16  num_buttons B16;
  222.     } xButtonInfo;
  223. typedef struct _xValuatorInfo *xValuatorInfoPtr;
  224. typedef struct _xValuatorInfo {
  225. #if defined(__cplusplus) || defined(c_plusplus)
  226.     CARD8  c_class;
  227. #else
  228.     CARD8  class;
  229. #endif
  230.     CARD8  length;
  231.     CARD8  num_axes;
  232.     CARD8  mode;
  233.     CARD32  motion_buffer_size B32;
  234.     } xValuatorInfo;
  235. typedef struct _xAxisInfo *xAxisInfoPtr;
  236. typedef struct _xAxisInfo {
  237.     CARD32  resolution B32;
  238.     CARD32  min_value B32;
  239.     CARD32  max_value B32;
  240.     } xAxisInfo;
  241. /*********************************************************
  242.  *
  243.  * OpenDevice.
  244.  *
  245.  */
  246. typedef struct {
  247.     CARD8 reqType; /* input extension major code */
  248.     CARD8  ReqType;        /* always X_OpenDevice  */
  249.     CARD16  length B16;
  250.     CARD8       deviceid;
  251.     BYTE pad1, pad2, pad3;
  252. } xOpenDeviceReq;
  253. typedef struct {
  254.     CARD8  repType;   /* X_Reply  */
  255.     CARD8  RepType;        /* always X_OpenDevice         */
  256.     CARD16  sequenceNumber B16;
  257.     CARD32  length B32;
  258.     CARD8  num_classes;
  259.     BYTE  pad1, pad2, pad3;
  260.     CARD32  pad00 B32;
  261.     CARD32  pad01 B32;
  262.     CARD32  pad02 B32;
  263.     CARD32  pad03 B32;
  264.     CARD32  pad04 B32;
  265.     } xOpenDeviceReply;
  266. typedef struct {
  267. #if defined(__cplusplus) || defined(c_plusplus)
  268.     CARD8  c_class;
  269. #else
  270.     CARD8  class;
  271. #endif
  272.     CARD8  event_type_base;
  273.     } xInputClassInfo;
  274. /*********************************************************
  275.  *
  276.  * CloseDevice.
  277.  *
  278.  */
  279. typedef struct {
  280.     CARD8 reqType; /* input extension major code */
  281.     CARD8  ReqType;        /* always X_CloseDevice  */
  282.     CARD16  length B16;
  283.     CARD8       deviceid;
  284.     BYTE pad1, pad2, pad3;
  285. } xCloseDeviceReq;
  286. /*********************************************************
  287.  *
  288.  * SetDeviceMode.
  289.  *
  290.  */
  291. typedef struct {
  292.     CARD8  reqType; /* input extension major code */
  293.     CARD8  ReqType;      /* always X_SetDeviceMode  */
  294.     CARD16  length B16;
  295.     CARD8       deviceid;
  296.     CARD8       mode;
  297.     BYTE  pad1, pad2;
  298. } xSetDeviceModeReq;
  299. typedef struct {
  300.     CARD8  repType;   /* X_Reply  */
  301.     CARD8  RepType;      /* always X_SetDeviceMode   */
  302.     CARD16  sequenceNumber B16;
  303.     CARD32  length B32;
  304.     CARD8  status;
  305.     BYTE pad1, pad2, pad3;
  306.     CARD32  pad01 B32;
  307.     CARD32  pad02 B32;
  308.     CARD32  pad03 B32;
  309.     CARD32  pad04 B32;
  310.     CARD32  pad05 B32;
  311. } xSetDeviceModeReply;
  312. /*********************************************************
  313.  *
  314.  * SelectExtensionEvent.
  315.  *
  316.  */
  317. typedef struct {
  318.     CARD8 reqType; /* input extension major code */
  319.     CARD8  ReqType;        /* always X_SelectExtensionEvent */
  320.     CARD16  length B16;
  321.     Window  window B32;
  322.     CARD16 count B16;
  323.     CARD16 pad00 B16;
  324. } xSelectExtensionEventReq;
  325. /*********************************************************
  326.  *
  327.  * GetSelectedExtensionEvent.
  328.  *
  329.  */
  330. typedef struct {
  331.     CARD8 reqType; /* input extension major code */
  332.     CARD8  ReqType;        /* X_GetSelectedExtensionEvents */
  333.     CARD16  length B16;
  334.     Window window B32;
  335. } xGetSelectedExtensionEventsReq;
  336. typedef struct {
  337.     CARD8  repType;   /* X_Reply  */
  338.     CARD8  RepType;        /* GetSelectedExtensionEvents */
  339.     CARD16  sequenceNumber B16;
  340.     CARD32  length B32;
  341.     CARD16  this_client_count B16;
  342.     CARD16  all_clients_count B16;
  343.     CARD32  pad01 B32;
  344.     CARD32  pad02 B32;
  345.     CARD32  pad03 B32;
  346.     CARD32  pad04 B32;
  347.     CARD32  pad05 B32;
  348. } xGetSelectedExtensionEventsReply;
  349. /*********************************************************
  350.  *
  351.  * ChangeDeviceDontPropagateList.
  352.  *
  353.  */
  354. typedef struct {
  355.     CARD8 reqType; /* input extension major code */
  356.     CARD8  ReqType;        /* X_ChangeDeviceDontPropagateList */
  357.     CARD16  length B16;
  358.     Window window B32;
  359.     CARD16  count B16;
  360.     CARD8  mode;
  361.     BYTE pad;
  362. } xChangeDeviceDontPropagateListReq;
  363. /*********************************************************
  364.  *
  365.  * GetDeviceDontPropagateList.
  366.  *
  367.  */
  368. typedef struct {
  369.     CARD8 reqType; /* input extension major code */
  370.     CARD8  ReqType;        /* X_GetDeviceDontPropagateList */
  371.     CARD16  length B16;
  372.     Window window B32;
  373. } xGetDeviceDontPropagateListReq;
  374. typedef struct {
  375.     CARD8  repType;   /* X_Reply  */
  376.     CARD8  RepType;        /* GetDeviceDontPropagateList   */
  377.     CARD16  sequenceNumber B16;
  378.     CARD32  length B32;
  379.     CARD16  count B16;
  380.     CARD16  pad00 B16;
  381.     CARD32  pad01 B32;
  382.     CARD32  pad02 B32;
  383.     CARD32  pad03 B32;
  384.     CARD32  pad04 B32;
  385.     CARD32  pad05 B32;
  386.     } xGetDeviceDontPropagateListReply;
  387. /*********************************************************
  388.  *
  389.  * GetDeviceMotionEvents.
  390.  *
  391.  */
  392. typedef struct {
  393.     CARD8  reqType; /* input extension major code */
  394.     CARD8  ReqType;        /* always X_GetDeviceMotionEvents*/
  395.     CARD16  length B16;
  396.     Time  start B32;
  397.     Time stop B32;
  398.     CARD8 deviceid;
  399.     BYTE pad1, pad2, pad3;
  400. } xGetDeviceMotionEventsReq;
  401. typedef struct {
  402.     CARD8  repType;   /* X_Reply */
  403.     CARD8  RepType;        /* always X_GetDeviceMotionEvents  */
  404.     CARD16  sequenceNumber B16;
  405.     CARD32  length B32;
  406.     CARD32  nEvents B32;
  407.     CARD8   axes;
  408.     CARD8   mode;
  409.     BYTE pad1, pad2;
  410.     CARD32  pad01 B32;
  411.     CARD32  pad02 B32;
  412.     CARD32  pad03 B32;
  413.     CARD32  pad04 B32;
  414. } xGetDeviceMotionEventsReply;
  415. /*********************************************************
  416.  *
  417.  * ChangeKeyboardDevice.
  418.  *
  419.  */
  420. typedef struct {
  421.     CARD8 reqType; /* input extension major code */
  422.     CARD8  ReqType;        /* X_ChangeKeyboardDevice  */
  423.     CARD16  length B16;
  424.     CARD8  deviceid;
  425.     BYTE pad1, pad2, pad3;
  426. } xChangeKeyboardDeviceReq;
  427. typedef struct {
  428.     CARD8  repType;   /* X_Reply  */
  429.     CARD8  RepType;        /* always X_ChangeKeyboardDevice*/
  430.     CARD16  sequenceNumber B16;
  431.     CARD32  length B32;  /* 0 */
  432.     CARD8  status;
  433.     BYTE pad1, pad2, pad3;
  434.     CARD32  pad01 B32;
  435.     CARD32  pad02 B32;
  436.     CARD32  pad03 B32;
  437.     CARD32  pad04 B32;
  438.     CARD32  pad05 B32;
  439.     } xChangeKeyboardDeviceReply;
  440. /*********************************************************
  441.  *
  442.  * ChangePointerDevice.
  443.  *
  444.  */
  445. typedef struct {
  446.     CARD8 reqType; /* input extension major code */
  447.     CARD8  ReqType;        /* X_ChangePointerDevice  */
  448.     CARD16  length B16;
  449.     CARD8  xaxis;
  450.     CARD8  yaxis;
  451.     CARD8  deviceid;
  452.     BYTE pad1;
  453. } xChangePointerDeviceReq;
  454. typedef struct {
  455.     CARD8  repType;   /* X_Reply  */
  456.     CARD8  RepType;        /* always X_ChangePointerDevice */
  457.     CARD16  sequenceNumber B16;
  458.     CARD32  length B32;  /* 0 */
  459.     CARD8  status;
  460.     BYTE pad1, pad2, pad3;
  461.     CARD32  pad01 B32;
  462.     CARD32  pad02 B32;
  463.     CARD32  pad03 B32;
  464.     CARD32  pad04 B32;
  465.     CARD32  pad05 B32;
  466.     } xChangePointerDeviceReply;
  467. /*********************************************************
  468.  *
  469.  * GrabDevice.
  470.  *
  471.  */
  472. typedef struct {
  473.     CARD8 reqType; /* input extension major code */
  474.     CARD8  ReqType;        /* always X_GrabDevice */
  475.     CARD16  length B16;
  476.     Window  grabWindow B32;
  477.     Time  time B32;
  478.     CARD16 event_count B16;
  479.     CARD8 this_device_mode;
  480.     CARD8 other_devices_mode;
  481.     BOOL  ownerEvents;
  482.     CARD8  deviceid;
  483.     CARD16  pad01 B16;
  484. } xGrabDeviceReq;
  485. typedef struct {
  486.     CARD8  repType;   /* X_Reply  */
  487.     CARD8  RepType;        /* always X_GrabDevice   */
  488.     CARD16  sequenceNumber B16;
  489.     CARD32  length B32;  /* 0 */
  490.     CARD8  status;
  491.     BYTE pad1, pad2, pad3;
  492.     CARD32  pad01 B32;
  493.     CARD32  pad02 B32;
  494.     CARD32  pad03 B32;
  495.     CARD32  pad04 B32;
  496.     CARD32  pad05 B32;
  497.     } xGrabDeviceReply;
  498. /*********************************************************
  499.  *
  500.  * UngrabDevice.
  501.  *
  502.  */
  503. typedef struct {
  504.     CARD8 reqType; /* input extension major code */
  505.     CARD8  ReqType;        /* always X_UnGrabDevice  */
  506.     CARD16  length B16;
  507.     Time  time B32;
  508.     CARD8  deviceid;
  509.     BYTE pad1, pad2, pad3;
  510. } xUngrabDeviceReq;
  511. /*********************************************************
  512.  *
  513.  * GrabDeviceKey.
  514.  *
  515.  */
  516. typedef struct {
  517.     CARD8 reqType; /* input extension major code */
  518.     CARD8  ReqType;        /* always X_GrabDeviceKey  */
  519.     CARD16  length B16;
  520.     Window  grabWindow B32;
  521.     CARD16 event_count B16;
  522.     CARD16  modifiers B16;
  523.     CARD8 modifier_device;
  524.     CARD8 grabbed_device;
  525.     CARD8 key;
  526.     BYTE  this_device_mode;  
  527.     BYTE  other_devices_mode;  
  528.     BOOL  ownerEvents;
  529.     BYTE pad1, pad2;
  530. } xGrabDeviceKeyReq;
  531. /*********************************************************
  532.  *
  533.  * UngrabDeviceKey.
  534.  *
  535.  */
  536. typedef struct {
  537.     CARD8 reqType; /* input extension major code */
  538.     CARD8  ReqType;        /* always X_UngrabDeviceKey  */
  539.     CARD16  length B16;
  540.     Window  grabWindow B32;
  541.     CARD16 modifiers B16;
  542.     CARD8  modifier_device;
  543.     CARD8 key;
  544.     CARD8 grabbed_device;
  545.     BYTE pad1, pad2, pad3;
  546. } xUngrabDeviceKeyReq;
  547. /*********************************************************
  548.  *
  549.  * GrabDeviceButton.
  550.  *
  551.  */
  552. typedef struct {
  553.     CARD8 reqType; /* input extension major code */
  554.     CARD8  ReqType;        /* always X_GrabDeviceButton  */
  555.     CARD16  length B16;
  556.     Window  grabWindow B32;
  557.     CARD8 grabbed_device;
  558.     CARD8 modifier_device;
  559.     CARD16  event_count B16;
  560.     CARD16  modifiers B16;
  561.     BYTE  this_device_mode;  
  562.     BYTE  other_devices_mode;  
  563.     CARD8  button;
  564.     BOOL  ownerEvents;
  565.     BYTE pad1, pad2;
  566. } xGrabDeviceButtonReq;
  567. /*********************************************************
  568.  *
  569.  * UngrabDeviceButton.
  570.  *
  571.  */
  572. typedef struct {
  573.     CARD8 reqType; /* input extension major code */
  574.     CARD8  ReqType;        /* always X_UngrabDeviceButton  */
  575.     CARD16  length B16;
  576.     Window  grabWindow B32;
  577.     CARD16  modifiers B16;
  578.     CARD8  modifier_device;
  579.     CARD8  button;
  580.     CARD8  grabbed_device;
  581.     BYTE pad1, pad2, pad3;
  582. } xUngrabDeviceButtonReq;
  583. /*********************************************************
  584.  *
  585.  * AllowDeviceEvents.
  586.  *
  587.  */
  588. typedef struct {
  589.     CARD8 reqType; /* input extension major code */
  590.     CARD8  ReqType;        /* always X_AllowDeviceEvents  */
  591.     CARD16  length B16;
  592.     Time  time B32;
  593.     CARD8 mode;
  594.     CARD8  deviceid;
  595.     BYTE pad1, pad2;
  596. } xAllowDeviceEventsReq;
  597. /*********************************************************
  598.  *
  599.  * GetDeviceFocus.
  600.  *
  601.  */
  602. typedef struct {
  603.     CARD8  reqType;        /* input extension major code   */
  604.     CARD8  ReqType;        /* always X_GetDeviceFocus  */
  605.     CARD16  length B16;
  606.     CARD8  deviceid;
  607.     BYTE  pad1, pad2, pad3;
  608. } xGetDeviceFocusReq;
  609. typedef struct {
  610.     CARD8  repType;   /* X_Reply  */
  611.     CARD8  RepType;        /* always X_GetDeviceFocus   */
  612.     CARD16  sequenceNumber B16;
  613.     CARD32  length B32;
  614.     CARD32  focus B32;
  615.     Time  time B32;
  616.     CARD8   revertTo;
  617.     BYTE  pad1, pad2, pad3;
  618.     CARD32  pad01 B32;
  619.     CARD32  pad02 B32;
  620.     CARD32  pad03 B32;
  621.     } xGetDeviceFocusReply;
  622. /*********************************************************
  623.  *
  624.  * SetDeviceFocus.
  625.  *
  626.  */
  627. typedef struct {
  628.     CARD8  reqType;        /* input extension major code   */
  629.     CARD8  ReqType;        /* always X_SetDeviceFocus  */
  630.     CARD16  length B16;
  631.     Window  focus B32;
  632.     Time    time B32;
  633.     CARD8   revertTo;
  634.     CARD8   device;
  635.     CARD16  pad01 B16;
  636. } xSetDeviceFocusReq;
  637. /*********************************************************
  638.  *
  639.  * GetFeedbackControl.
  640.  *
  641.  */
  642. typedef struct {
  643.     CARD8 reqType; /* input extension major code */
  644.     CARD8  ReqType;        /* X_GetFeedbackControl   */
  645.     CARD16  length B16;
  646.     CARD8  deviceid;
  647.     BYTE pad1, pad2, pad3;
  648. } xGetFeedbackControlReq;
  649. typedef struct {
  650.     CARD8   repType;   /* X_Reply  */
  651.     CARD8   RepType;        /* always X_GetFeedbackControl  */
  652.     CARD16  sequenceNumber B16;
  653.     CARD32  length B32;
  654.     CARD16 num_feedbacks B16;
  655.     CARD16 pad01 B16;
  656.     CARD32 pad02 B32;
  657.     CARD32 pad03 B32;
  658.     CARD32 pad04 B32;
  659.     CARD32 pad05 B32;
  660.     CARD32 pad06 B32;
  661. } xGetFeedbackControlReply;
  662. typedef struct {
  663. #if defined(__cplusplus) || defined(c_plusplus)
  664.     CARD8   c_class;  /* feedback class */
  665. #else
  666.     CARD8   class;  /* feedback class */
  667. #endif
  668.     CARD8   id;  /* feedback id     */
  669.     CARD16   length B16;  /* feedback length */
  670. } xFeedbackState;
  671. typedef struct {
  672. #if defined(__cplusplus) || defined(c_plusplus)
  673.     CARD8   c_class;
  674. #else
  675.     CARD8   class;
  676. #endif
  677.     CARD8   id;
  678.     CARD16  length B16;
  679.     CARD16  pitch B16;
  680.     CARD16  duration B16;
  681.     CARD32  led_mask B32;
  682.     CARD32  led_values B32;
  683.     BOOL    global_auto_repeat;
  684.     CARD8   click;
  685.     CARD8   percent;
  686.     BYTE    pad;
  687.     BYTE    auto_repeats[32];
  688. } xKbdFeedbackState;
  689. typedef struct {
  690. #if defined(__cplusplus) || defined(c_plusplus)
  691.     CARD8   c_class;
  692. #else
  693.     CARD8   class;
  694. #endif
  695.     CARD8   id;
  696.     CARD16  length B16;
  697.     CARD8   pad1,pad2;
  698.     CARD16  accelNum B16;
  699.     CARD16  accelDenom B16;
  700.     CARD16  threshold B16;
  701. } xPtrFeedbackState;
  702. typedef struct {
  703. #if defined(__cplusplus) || defined(c_plusplus)
  704.     CARD8   c_class;   /* feedback class id */
  705. #else
  706.     CARD8   class;   /* feedback class id */
  707. #endif
  708.     CARD8    id;
  709.     CARD16   length B16;  /* feedback length   */
  710.     CARD32 resolution B32;
  711.     INT32 min_value B32;
  712.     INT32 max_value B32;
  713. } xIntegerFeedbackState;
  714. typedef struct {
  715. #if defined(__cplusplus) || defined(c_plusplus)
  716.     CARD8   c_class;   /* feedback class id */
  717. #else
  718.     CARD8   class;   /* feedback class id */
  719. #endif
  720.     CARD8    id;
  721.     CARD16   length B16;  /* feedback length   */
  722.     CARD16 max_symbols B16;
  723.     CARD16 num_syms_supported B16;
  724. } xStringFeedbackState;
  725. typedef struct {
  726. #if defined(__cplusplus) || defined(c_plusplus)
  727.     CARD8   c_class;   /* feedback class id */
  728. #else
  729.     CARD8   class;   /* feedback class id */
  730. #endif
  731.     CARD8 id;
  732.     CARD16   length B16;  /* feedback length   */
  733.     CARD8 percent;
  734.     BYTE pad1, pad2, pad3;
  735.     CARD16 pitch B16;
  736.     CARD16 duration B16;
  737. } xBellFeedbackState;
  738. typedef struct {
  739. #if defined(__cplusplus) || defined(c_plusplus)
  740.     CARD8   c_class;   /* feedback class id */
  741. #else
  742.     CARD8   class;   /* feedback class id */
  743. #endif
  744.     CARD8 id;
  745.     CARD16   length B16;  /* feedback length   */
  746.     CARD32 led_mask B32;
  747.     CARD32 led_values B32;
  748. } xLedFeedbackState;
  749. /*********************************************************
  750.  *
  751.  * ChangeFeedbackControl.
  752.  *
  753.  */
  754. typedef struct {
  755.     CARD8 reqType; /* input extension major code */
  756.     CARD8  ReqType;        /* X_ChangeFeedbackControl   */
  757.     CARD16  length B16;
  758.     CARD32 mask B32;
  759.     CARD8   deviceid;
  760.     CARD8   feedbackid;
  761.     BYTE pad1, pad2;
  762. } xChangeFeedbackControlReq;
  763. typedef struct {
  764. #if defined(__cplusplus) || defined(c_plusplus)
  765.     CARD8   c_class;   /* feedback class id */
  766. #else
  767.     CARD8   class;   /* feedback class id */
  768. #endif
  769.     CARD8   id;  /* feedback id       */
  770.     CARD16   length B16;  /* feedback length   */
  771. } xFeedbackCtl;
  772. typedef struct {
  773. #if defined(__cplusplus) || defined(c_plusplus)
  774.     CARD8   c_class;   /* feedback class id */
  775. #else
  776.     CARD8   class;   /* feedback class id */
  777. #endif
  778.     CARD8   id;  /* feedback length   */
  779.     CARD16   length B16;  /* feedback length   */
  780.     KeyCode  key; 
  781.     CARD8 auto_repeat_mode;
  782.     INT8 click;
  783.     INT8 percent;
  784.     INT16 pitch B16;
  785.     INT16 duration B16;
  786.     CARD32 led_mask B32;
  787.     CARD32 led_values B32;
  788. } xKbdFeedbackCtl;
  789. typedef struct {
  790. #if defined(__cplusplus) || defined(c_plusplus)
  791.     CARD8   c_class;   /* feedback class id */
  792. #else
  793.     CARD8   class;   /* feedback class id */
  794. #endif
  795.     CARD8   id;  /* feedback id       */
  796.     CARD16   length B16;  /* feedback length   */
  797.     CARD8   pad1,pad2;
  798.     INT16 num B16;
  799.     INT16 denom B16;
  800.     INT16 thresh B16;
  801. } xPtrFeedbackCtl;
  802. typedef struct {
  803. #if defined(__cplusplus) || defined(c_plusplus)
  804.     CARD8   c_class;   /* feedback class id */
  805. #else
  806.     CARD8   class;   /* feedback class id */
  807. #endif
  808.     CARD8   id;  /* feedback id       */
  809.     CARD16   length B16;  /* feedback length   */
  810.     INT32 int_to_display B32;
  811. } xIntegerFeedbackCtl;
  812. typedef struct {
  813. #if defined(__cplusplus) || defined(c_plusplus)
  814.     CARD8   c_class;   /* feedback class id */
  815. #else
  816.     CARD8   class;   /* feedback class id */
  817. #endif
  818.     CARD8   id;  /* feedback id       */
  819.     CARD16   length B16;  /* feedback length   */
  820.     CARD8   pad1,pad2;
  821.     CARD16 num_keysyms B16;
  822. } xStringFeedbackCtl;
  823. typedef struct {
  824. #if defined(__cplusplus) || defined(c_plusplus)
  825.     CARD8   c_class;   /* feedback class id */
  826. #else
  827.     CARD8   class;   /* feedback class id */
  828. #endif
  829.     CARD8   id;  /* feedback id       */
  830.     CARD16   length B16;  /* feedback length   */
  831.     INT8 percent;
  832.     BYTE pad1, pad2, pad3;
  833.     INT16 pitch B16;
  834.     INT16 duration B16;
  835. } xBellFeedbackCtl;
  836. typedef struct {
  837. #if defined(__cplusplus) || defined(c_plusplus)
  838.     CARD8   c_class;   /* feedback class id */
  839. #else
  840.     CARD8   class;   /* feedback class id */
  841. #endif
  842.     CARD8   id;  /* feedback id       */
  843.     CARD16   length B16;  /* feedback length   */
  844.     CARD32 led_mask B32;
  845.     CARD32 led_values B32;
  846. } xLedFeedbackCtl;
  847. /*********************************************************
  848.  *
  849.  * GetDeviceKeyMapping.
  850.  *
  851.  */
  852. typedef struct {
  853.     CARD8  reqType;        /* input extension major code   */
  854.     CARD8  ReqType;      /* always X_GetDeviceKeyMapping */
  855.     CARD16  length B16;
  856.     CARD8    deviceid;
  857.     KeyCode  firstKeyCode; 
  858.     CARD8  count;
  859.     BYTE pad1;
  860. } xGetDeviceKeyMappingReq;
  861. typedef struct {
  862.     CARD8   repType;   /* X_Reply  */
  863.     CARD8   RepType;        /* always X_GetDeviceKeyMapping */
  864.     CARD16  sequenceNumber B16;
  865.     CARD32  length B32;
  866.     CARD8   keySymsPerKeyCode;
  867.     CARD8   pad0;
  868.     CARD16  pad1 B16;
  869.     CARD32  pad2 B32;
  870.     CARD32  pad3 B32;
  871.     CARD32  pad4 B32;
  872.     CARD32  pad5 B32;
  873.     CARD32  pad6 B32;
  874. } xGetDeviceKeyMappingReply;
  875. /*********************************************************
  876.  *
  877.  * ChangeDeviceKeyMapping.
  878.  *
  879.  */
  880. typedef struct {
  881.     CARD8  reqType;        /* input extension major code   */
  882.     CARD8  ReqType;        /* always X_ChangeDeviceKeyMapping */
  883.     CARD16  length B16;
  884.     CARD8    deviceid;
  885.     KeyCode  firstKeyCode;
  886.     CARD8  keySymsPerKeyCode;
  887.     CARD8  keyCodes;
  888. } xChangeDeviceKeyMappingReq;
  889. /*********************************************************
  890.  *
  891.  * GetDeviceModifierMapping.
  892.  *
  893.  */
  894. typedef struct {
  895.     CARD8  reqType;        /* input extension major code   */
  896.     CARD8  ReqType;        /* always X_GetDeviceModifierMapping */
  897.     CARD16  length B16;
  898.     CARD8    deviceid;
  899.     BYTE pad1, pad2, pad3;
  900. } xGetDeviceModifierMappingReq;
  901. typedef struct {
  902.     CARD8   repType;   /* X_Reply */
  903.     CARD8   RepType;        /* always X_GetDeviceModifierMapping */
  904.     CARD16  sequenceNumber B16;
  905.     CARD32  length B32;
  906.     CARD8   numKeyPerModifier;
  907.     CARD8   pad0;
  908.     CARD16  pad1 B16;
  909.     CARD32  pad2 B32;
  910.     CARD32  pad3 B32;
  911.     CARD32  pad4 B32;
  912.     CARD32  pad5 B32;
  913.     CARD32  pad6 B32;
  914. } xGetDeviceModifierMappingReply;
  915. /*********************************************************
  916.  *
  917.  * SetDeviceModifierMapping.
  918.  *
  919.  */
  920. typedef struct {
  921.     CARD8  reqType;        /* input extension major code   */
  922.     CARD8  ReqType;        /* always X_SetDeviceModifierMapping */
  923.     CARD16  length B16;
  924.     CARD8    deviceid;
  925.     CARD8    numKeyPerModifier;
  926.     CARD16   pad1 B16;
  927. } xSetDeviceModifierMappingReq;
  928. typedef struct {
  929.     CARD8   repType;   /* X_Reply */
  930.     CARD8   RepType;        /* always X_SetDeviceModifierMapping */
  931.     CARD16  sequenceNumber B16;
  932.     CARD32  length B32;
  933.     CARD8   success;
  934.     CARD8   pad0;
  935.     CARD16  pad1 B16;
  936.     CARD32  pad2 B32;
  937.     CARD32  pad3 B32;
  938.     CARD32  pad4 B32;
  939.     CARD32  pad5 B32;
  940.     CARD32  pad6 B32;
  941. } xSetDeviceModifierMappingReply;
  942. /*********************************************************
  943.  *
  944.  * GetDeviceButtonMapping.
  945.  *
  946.  */
  947. typedef struct {
  948.     CARD8 reqType; /* input extension major code */
  949.     CARD8  ReqType;        /* X_GetDeviceButtonMapping     */
  950.     CARD16  length B16;
  951.     CARD8    deviceid;
  952.     BYTE pad1, pad2, pad3;
  953. } xGetDeviceButtonMappingReq;
  954. typedef struct {
  955.     CARD8   repType;   /* X_Reply */
  956.     CARD8   RepType;        /* always X_GetDeviceButtonMapping */
  957.     CARD16  sequenceNumber B16;
  958.     CARD32  length B32;
  959.     CARD8  nElts;
  960.     BYTE pad1, pad2, pad3;
  961.     CARD32  pad01 B32;
  962.     CARD32  pad02 B32;
  963.     CARD32  pad03 B32;
  964.     CARD32  pad04 B32;
  965.     CARD32  pad05 B32;
  966. } xGetDeviceButtonMappingReply;
  967. /*********************************************************
  968.  *
  969.  * SetDeviceButtonMapping.
  970.  *
  971.  */
  972. typedef struct {
  973.     CARD8 reqType; /* input extension major code */
  974.     CARD8  ReqType;        /* X_SetDeviceButtonMapping     */
  975.     CARD16  length B16;
  976.     CARD8    deviceid;
  977.     CARD8    map_length;
  978.     BYTE pad1, pad2;
  979. } xSetDeviceButtonMappingReq;
  980. typedef struct {
  981.     CARD8   repType;   /* X_Reply */
  982.     CARD8   RepType;         /* always X_SetDeviceButtonMapping */
  983.     CARD16  sequenceNumber B16;
  984.     CARD32  length B32;
  985.     CARD8  status;
  986.     BYTE  pad0;
  987.     CARD16  pad1 B16;
  988.     CARD32  pad2 B32;
  989.     CARD32  pad3 B32;
  990.     CARD32  pad4 B32;
  991.     CARD32  pad5 B32;
  992.     CARD32  pad6 B32;
  993. } xSetDeviceButtonMappingReply;
  994. /*********************************************************
  995.  *
  996.  * QueryDeviceState.
  997.  *
  998.  */
  999. typedef struct {
  1000.     CARD8 reqType;
  1001.     CARD8  ReqType;        /* always X_QueryDeviceState */
  1002.     CARD16  length B16;
  1003.     CARD8    deviceid;
  1004.     BYTE pad1, pad2, pad3;
  1005. } xQueryDeviceStateReq;
  1006. typedef struct {
  1007.     CARD8   repType;   /* X_Reply */
  1008.     CARD8   RepType;         /* always X_QueryDeviceState */
  1009.     CARD16  sequenceNumber B16;
  1010.     CARD32  length B32;
  1011.     CARD8  num_classes;
  1012.     BYTE  pad0;
  1013.     CARD16  pad1 B16;
  1014.     CARD32  pad2 B32;
  1015.     CARD32  pad3 B32;
  1016.     CARD32  pad4 B32;
  1017.     CARD32  pad5 B32;
  1018.     CARD32  pad6 B32;
  1019. } xQueryDeviceStateReply;
  1020. typedef struct {
  1021. #if defined(__cplusplus) || defined(c_plusplus)
  1022.     CARD8   c_class;
  1023. #else
  1024.     CARD8   class;
  1025. #endif
  1026.     CARD8   length;
  1027.     CARD8 num_keys;
  1028.     BYTE    pad1;
  1029.     CARD8   keys[32];
  1030. } xKeyState;
  1031. typedef struct {
  1032. #if defined(__cplusplus) || defined(c_plusplus)
  1033.     CARD8   c_class;
  1034. #else
  1035.     CARD8   class;
  1036. #endif
  1037.     CARD8   length;
  1038.     CARD8 num_buttons;
  1039.     BYTE    pad1;
  1040.     CARD8   buttons[32];
  1041. } xButtonState;
  1042. typedef struct {
  1043. #if defined(__cplusplus) || defined(c_plusplus)
  1044.     CARD8   c_class;
  1045. #else
  1046.     CARD8   class;
  1047. #endif
  1048.     CARD8   length;
  1049.     CARD8   num_valuators;
  1050.     CARD8 mode;
  1051. } xValuatorState;
  1052. /*********************************************************
  1053.  *
  1054.  * SendExtensionEvent.
  1055.  * THIS REQUEST MUST BE KEPT A MULTIPLE OF 8 BYTES IN LENGTH!
  1056.  * MORE EVENTS MAY FOLLOW AND THEY MUST BE QUAD-ALIGNED!
  1057.  *
  1058.  */
  1059. typedef struct {
  1060.     CARD8 reqType;
  1061.     CARD8  ReqType;        /* always X_SendExtensionEvent */
  1062.     CARD16  length B16;
  1063.     Window destination B32;
  1064.     CARD8    deviceid;
  1065.     BOOL    propagate;
  1066.     CARD16 count B16;
  1067.     CARD8 num_events;
  1068.     BYTE pad1,pad2,pad3;
  1069. } xSendExtensionEventReq;
  1070. /*********************************************************
  1071.  *
  1072.  * DeviceBell.
  1073.  *
  1074.  */
  1075. typedef struct {
  1076.     CARD8 reqType;
  1077.     CARD8  ReqType;        /* always X_DeviceBell */
  1078.     CARD16  length B16;
  1079.     CARD8    deviceid;
  1080.     CARD8 feedbackid;
  1081.     CARD8 feedbackclass;
  1082.     INT8 percent;
  1083. } xDeviceBellReq;
  1084. /*********************************************************
  1085.  *
  1086.  * SetDeviceValuators.
  1087.  *
  1088.  */
  1089. typedef struct {
  1090.     CARD8  reqType; /* input extension major code */
  1091.     CARD8  ReqType;      /* always X_SetDeviceValuators  */
  1092.     CARD16  length B16;
  1093.     CARD8       deviceid;
  1094.     CARD8       first_valuator;
  1095.     CARD8       num_valuators;
  1096.     BYTE  pad1;
  1097. } xSetDeviceValuatorsReq;
  1098. typedef struct {
  1099.     CARD8  repType;   /* X_Reply  */
  1100.     CARD8  RepType;      /* always X_SetDeviceValuators  */
  1101.     CARD16  sequenceNumber B16;
  1102.     CARD32  length B32;
  1103.     CARD8  status;
  1104.     BYTE pad1, pad2, pad3;
  1105.     CARD32  pad01 B32;
  1106.     CARD32  pad02 B32;
  1107.     CARD32  pad03 B32;
  1108.     CARD32  pad04 B32;
  1109.     CARD32  pad05 B32;
  1110. } xSetDeviceValuatorsReply;
  1111. /*********************************************************
  1112.  *
  1113.  * GetDeviceControl.
  1114.  *
  1115.  */
  1116. typedef struct {
  1117.     CARD8  reqType; /* input extension major code */
  1118.     CARD8  ReqType;      /* always X_GetDeviceControl  */
  1119.     CARD16  length B16;
  1120.     CARD16      control B16;
  1121.     CARD8       deviceid;
  1122.     BYTE  pad2;
  1123. } xGetDeviceControlReq;
  1124. typedef struct {
  1125.     CARD8  repType;   /* X_Reply  */
  1126.     CARD8  RepType;      /* always X_GetDeviceControl  */
  1127.     CARD16  sequenceNumber B16;
  1128.     CARD32  length B32;
  1129.     CARD8  status;
  1130.     BYTE pad1, pad2, pad3;
  1131.     CARD32  pad01 B32;
  1132.     CARD32  pad02 B32;
  1133.     CARD32  pad03 B32;
  1134.     CARD32  pad04 B32;
  1135.     CARD32  pad05 B32;
  1136. } xGetDeviceControlReply;
  1137. typedef struct {
  1138.     CARD16   control B16;  /* control type        */
  1139.     CARD16   length B16;  /* control length   */
  1140. } xDeviceState;
  1141. typedef struct {
  1142.     CARD16   control B16;  /* control type        */
  1143.     CARD16   length B16;  /* control length   */
  1144.     CARD32   num_valuators B32;  /* number of valuators */
  1145. } xDeviceResolutionState;
  1146. typedef struct {
  1147.      CARD16         control B16;
  1148.      CARD16         length B16;
  1149.      INT32          min_x B32;
  1150.      INT32          max_x B32;
  1151.      INT32          min_y B32;
  1152.      INT32          max_y B32;
  1153.      CARD32         flip_x B32;
  1154.      CARD32         flip_y B32;
  1155.      CARD32         rotation B32;
  1156.      CARD32         button_threshold B32;
  1157. } xDeviceAbsCalibState;
  1158. typedef struct {
  1159.      CARD16         control B16;
  1160.      CARD16         length B16;
  1161.      CARD32         offset_x B32;
  1162.      CARD32         offset_y B32;
  1163.      CARD32         width B32;
  1164.      CARD32         height B32;
  1165.      CARD32         screen B32;
  1166.      CARD32         following B32;
  1167. } xDeviceAbsAreaState;
  1168. typedef struct {
  1169.     CARD16      control B16;            /* control type                 */
  1170.     CARD16      length  B16;            /* control length               */
  1171.     CARD8       status;
  1172.     CARD8       iscore;
  1173.     CARD16      pad1 B16;
  1174. } xDeviceCoreState;
  1175. typedef struct {
  1176.     CARD16      control B16;            /* control type                 */
  1177.     CARD16      length  B16;            /* control length               */
  1178.     CARD8       enable;
  1179.     CARD8       pad0;
  1180.     CARD16      pad1 B16;
  1181. } xDeviceEnableState;
  1182. /*********************************************************
  1183.  *
  1184.  * ChangeDeviceControl.
  1185.  *
  1186.  */
  1187. typedef struct {
  1188.     CARD8  reqType; /* input extension major code */
  1189.     CARD8  ReqType;      /* always X_ChangeDeviceControl */
  1190.     CARD16  length B16;
  1191.     CARD16      control B16;
  1192.     CARD8       deviceid;
  1193.     BYTE        pad0;
  1194. } xChangeDeviceControlReq;
  1195. typedef struct {
  1196.     CARD8  repType;   /* X_Reply  */
  1197.     CARD8  RepType;      /* always X_ChangeDeviceControl */
  1198.     CARD16  sequenceNumber B16;
  1199.     CARD32  length B32;
  1200.     CARD8  status;
  1201.     BYTE pad1, pad2, pad3;
  1202.     CARD32  pad01 B32;
  1203.     CARD32  pad02 B32;
  1204.     CARD32  pad03 B32;
  1205.     CARD32  pad04 B32;
  1206.     CARD32  pad05 B32;
  1207. } xChangeDeviceControlReply;
  1208. typedef struct {
  1209.     CARD16   control B16;  /* control type        */
  1210.     CARD16   length B16;  /* control length   */
  1211. } xDeviceCtl;
  1212. typedef struct {
  1213.     CARD16   control B16;  /* control type        */
  1214.     CARD16   length B16;  /* control length   */
  1215.     CARD8   first_valuator;  /* first valuator to change     */
  1216.     CARD8   num_valuators;  /* number of valuators to change*/
  1217.     CARD8   pad1,pad2;
  1218. } xDeviceResolutionCtl;
  1219. typedef struct {
  1220.      CARD16         control B16;
  1221.      CARD16         length B16;
  1222.      INT32          min_x;
  1223.      INT32          max_x;
  1224.      INT32          min_y;
  1225.      INT32          max_y;
  1226.      CARD32         flip_x;
  1227.      CARD32         flip_y;
  1228.      CARD32         rotation;
  1229.      CARD32         button_threshold;
  1230. } xDeviceAbsCalibCtl;
  1231. typedef struct {
  1232.      CARD16         control B16;
  1233.      CARD16         length B16;
  1234.      CARD32         offset_x;
  1235.      CARD32         offset_y;
  1236.      INT32          width;
  1237.      INT32          height;
  1238.      INT32          screen;
  1239.      CARD32         following;
  1240. } xDeviceAbsAreaCtl;
  1241. typedef struct {
  1242.     CARD16          control B16;
  1243.     CARD16          length  B16;
  1244.     CARD8           status;
  1245.     CARD8           pad0;
  1246.     CARD16          pad1 B16;
  1247. } xDeviceCoreCtl;
  1248. typedef struct {
  1249.     CARD16          control B16;
  1250.     CARD16          length  B16;
  1251.     CARD8           enable;
  1252.     CARD8           pad0;
  1253.     CARD16          pad1 B16;
  1254. } xDeviceEnableCtl;
  1255. /**********************************************************
  1256.  *
  1257.  * Input extension events.
  1258.  *
  1259.  * DeviceValuator
  1260.  *
  1261.  */
  1262. typedef struct
  1263.     {
  1264.     BYTE  type;
  1265.     CARD8       deviceid;
  1266.     CARD16  sequenceNumber B16;
  1267.     KeyButMask  device_state B16;
  1268.     CARD8 num_valuators;
  1269.     CARD8       first_valuator;
  1270.     INT32  valuator0 B32;
  1271.     INT32  valuator1 B32;
  1272.     INT32  valuator2 B32;
  1273.     INT32  valuator3 B32;
  1274.     INT32  valuator4 B32;
  1275.     INT32  valuator5 B32;
  1276.     }  deviceValuator;
  1277. /**********************************************************
  1278.  *
  1279.  * DeviceKeyButtonPointer.
  1280.  *
  1281.  * Used for: DeviceKeyPress, DeviceKeyRelease,
  1282.  *      DeviceButtonPress, DeviceButtonRelease,
  1283.  *      ProximityIn, ProximityOut
  1284.  *      DeviceMotionNotify,
  1285.  * 
  1286.  */
  1287. typedef struct
  1288.     {
  1289.     BYTE  type;
  1290.     BYTE        detail;
  1291.     CARD16  sequenceNumber B16;
  1292.     Time        time B32;
  1293.     Window      root B32;
  1294.     Window      event B32;
  1295.     Window      child B32;
  1296.     INT16       root_x B16;
  1297.     INT16       root_y B16;
  1298.     INT16       event_x B16;
  1299.     INT16       event_y B16;
  1300.     KeyButMask  state B16;
  1301.     BOOL        same_screen;
  1302.     CARD8       deviceid;
  1303.     }  deviceKeyButtonPointer;
  1304. /**********************************************************
  1305.  *
  1306.  * DeviceFocus.
  1307.  *
  1308.  */
  1309. typedef struct
  1310.     {
  1311.     BYTE  type;
  1312.     BYTE        detail;
  1313.     CARD16  sequenceNumber B16;
  1314.     Time        time B32;
  1315.     Window      window B32;
  1316.     BYTE mode;
  1317.     CARD8       deviceid;
  1318.     BYTE pad1, pad2;
  1319.     CARD32 pad00 B32;
  1320.     CARD32 pad01 B32;
  1321.     CARD32 pad02 B32;
  1322.     CARD32 pad03 B32;
  1323.     }  deviceFocus;
  1324. /**********************************************************
  1325.  *
  1326.  * DeviceStateNotify.
  1327.  *
  1328.  * Note that the two high-order bits in the classes_reported
  1329.  * field are the proximity state (InProximity or OutOfProximity),
  1330.  * and the device mode (Absolute or Relative), respectively.
  1331.  *
  1332.  */
  1333. typedef struct
  1334.     {
  1335.     BYTE  type;
  1336.     BYTE        deviceid;
  1337.     CARD16  sequenceNumber B16;
  1338.     Time        time B32;
  1339.     CARD8 num_keys;
  1340.     CARD8 num_buttons;
  1341.     CARD8 num_valuators;
  1342.     CARD8       classes_reported;
  1343.     CARD8       buttons[4];
  1344.     CARD8       keys[4];
  1345.     INT32 valuator0 B32;
  1346.     INT32 valuator1 B32;
  1347.     INT32 valuator2 B32;
  1348.     }  deviceStateNotify;
  1349. /**********************************************************
  1350.  *
  1351.  * DeviceKeyStateNotify.
  1352.  *
  1353.  */
  1354. typedef struct
  1355.     {
  1356.     BYTE  type;
  1357.     BYTE        deviceid;
  1358.     CARD16  sequenceNumber B16;
  1359.     CARD8       keys[28];
  1360.     }  deviceKeyStateNotify;
  1361. /**********************************************************
  1362.  *
  1363.  * DeviceButtonStateNotify.
  1364.  *
  1365.  */
  1366. typedef struct
  1367.     {
  1368.     BYTE  type;
  1369.     BYTE        deviceid;
  1370.     CARD16  sequenceNumber B16;
  1371.     CARD8       buttons[28];
  1372.     }  deviceButtonStateNotify;
  1373. /**********************************************************
  1374.  *
  1375.  * DeviceMappingNotify.
  1376.  * Fields must be kept in sync with core mappingnotify event.
  1377.  *
  1378.  */
  1379. typedef struct
  1380.     {
  1381.     BYTE  type;
  1382.     BYTE        deviceid;
  1383.     CARD16  sequenceNumber B16;
  1384.     CARD8       request;
  1385.     KeyCode     firstKeyCode;
  1386.     CARD8       count;
  1387.     BYTE        pad1;
  1388.     Time        time B32;
  1389.     CARD32 pad00 B32;
  1390.     CARD32 pad01 B32;
  1391.     CARD32 pad02 B32;
  1392.     CARD32 pad03 B32;
  1393.     CARD32 pad04 B32;
  1394.     }  deviceMappingNotify;
  1395. /**********************************************************
  1396.  *
  1397.  * ChangeDeviceNotify.
  1398.  *
  1399.  */
  1400. typedef struct
  1401.     {
  1402.     BYTE  type;
  1403.     BYTE        deviceid;
  1404.     CARD16  sequenceNumber B16;
  1405.     Time        time B32;
  1406.     CARD8       request;
  1407.     BYTE        pad1, pad2, pad3;
  1408.     CARD32 pad00 B32;
  1409.     CARD32 pad01 B32;
  1410.     CARD32 pad02 B32;
  1411.     CARD32 pad03 B32;
  1412.     CARD32 pad04 B32;
  1413.     }  changeDeviceNotify;
  1414. /**********************************************************
  1415.  *
  1416.  * devicePresenceNotify.
  1417.  *
  1418.  */
  1419. typedef struct
  1420.     {
  1421.     BYTE  type;
  1422.     BYTE        pad00;
  1423.     CARD16  sequenceNumber B16;
  1424.     Time        time B32;
  1425.     BYTE        devchange; /* Device{Added|Removed|Enabled|Disabled|ControlChanged} */
  1426.     BYTE        deviceid;
  1427.     CARD16      control B16;
  1428.     CARD32 pad02 B32;
  1429.     CARD32 pad03 B32;
  1430.     CARD32 pad04 B32;
  1431.     CARD32 pad05 B32;
  1432.     CARD32 pad06 B32;
  1433.     }  devicePresenceNotify;
  1434. #undef Window
  1435. #undef Time
  1436. #undef KeyCode
  1437. #endif