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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: xteststr.h,v 1.4 2001/02/09 02:03:24 xorgcvs Exp $ */
  2. /*
  3. Copyright 1992, 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. */
  21. #ifndef _XTESTSTR_H_
  22. #define _XTESTSTR_H_
  23. #define Window CARD32
  24. #define Time CARD32
  25. #define Cursor CARD32
  26. #define XTestCurrentCursor ((Cursor)1)
  27. typedef struct {
  28.     CARD8 reqType; /* always XTestReqCode */
  29.     CARD8 xtReqType; /* always X_XTestGetVersion */
  30.     CARD16 length B16;
  31.     CARD8 majorVersion;
  32.     CARD8 pad;
  33.     CARD16 minorVersion B16;
  34. } xXTestGetVersionReq;
  35. #define sz_xXTestGetVersionReq 8
  36. typedef struct {
  37.     BYTE type; /* X_Reply */
  38.     CARD8 majorVersion;
  39.     CARD16 sequenceNumber B16;
  40.     CARD32 length B32;
  41.     CARD16 minorVersion B16;
  42.     CARD16 pad0 B16;
  43.     CARD32 pad1 B32;
  44.     CARD32 pad2 B32;
  45.     CARD32 pad3 B32;
  46.     CARD32 pad4 B32;
  47.     CARD32 pad5 B32;
  48. } xXTestGetVersionReply;
  49. #define sz_xXTestGetVersionReply 32
  50. typedef struct {
  51.     CARD8 reqType; /* always XTestReqCode */
  52.     CARD8 xtReqType; /* always X_XTestCompareCursor */
  53.     CARD16 length B16;
  54.     Window window B32;
  55.     Cursor cursor B32;
  56. } xXTestCompareCursorReq;
  57. #define sz_xXTestCompareCursorReq 12
  58. typedef struct {
  59.     BYTE type; /* X_Reply */
  60.     BOOL same;
  61.     CARD16 sequenceNumber B16;
  62.     CARD32 length B32;
  63.     CARD32 pad0 B32;
  64.     CARD32 pad1 B32;
  65.     CARD32 pad2 B32;
  66.     CARD32 pad3 B32;
  67.     CARD32 pad4 B32;
  68.     CARD32 pad5 B32;
  69. } xXTestCompareCursorReply;
  70. #define sz_xXTestCompareCursorReply 32
  71. /* used only on the client side */
  72. typedef struct {
  73.     CARD8 reqType; /* always XTestReqCode */
  74.     CARD8 xtReqType; /* always X_XTestFakeInput */
  75.     CARD16 length B16;
  76.     BYTE type;
  77.     BYTE detail;
  78.     CARD16 pad0 B16;
  79.     Time time B32;
  80.     Window root B32;
  81.     CARD32 pad1 B32;
  82.     CARD32 pad2 B32;
  83.     INT16 rootX B16, rootY B16;
  84.     CARD32 pad3 B32;
  85.     CARD16 pad4 B16;
  86.     CARD8 pad5;
  87.     CARD8 deviceid;
  88. } xXTestFakeInputReq;
  89. #define sz_xXTestFakeInputReq 36
  90. typedef struct {
  91.     CARD8 reqType; /* always XTestReqCode */
  92.     CARD8 xtReqType; /* always X_XTestGrabControl */
  93.     CARD16 length B16;
  94.     BOOL impervious;
  95.     CARD8 pad0;
  96.     CARD8 pad1;
  97.     CARD8 pad2;
  98. } xXTestGrabControlReq;
  99. #define sz_xXTestGrabControlReq 8
  100. #undef Window
  101. #undef Time
  102. #undef Cursor
  103. #endif /* _XTESTSTR_H_ */