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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $XFree86: xc/include/extensions/Xagstr.h,v 1.4 2001/12/14 19:53:28 dawes Exp $ */
  2. /*
  3. Copyright 1996, 1998, 2001  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
  10. in all copies or substantial portions of the Software.
  11. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  12. OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  13. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  14. IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR
  15. OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  16. ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  17. OTHER DEALINGS IN THE SOFTWARE.
  18. Except as contained in this notice, the name of The Open Group shall
  19. not be used in advertising or otherwise to promote the sale, use or
  20. other dealings in this Software without prior written authorization
  21. from The Open Group.
  22. */
  23. /* $Xorg: Xagstr.h,v 1.6 2001/02/09 02:03:24 xorgcvs Exp $ */
  24. #ifndef _XAGSTR_H_ /* { */
  25. #define _XAGSTR_H_
  26. #include <X11/extensions/Xag.h>
  27. #define XAppGroup CARD32
  28. #define XAGNAME "XC-APPGROUP"
  29. #define XAG_MAJOR_VERSION 1 /* current version numbers */
  30. #define XAG_MINOR_VERSION 0
  31. #define XagWindowTypeX11 0
  32. #define XagWindowTypeMacintosh 1
  33. #define XagWindowTypeWin32 2
  34. #define XagWindowTypeWin16 3
  35. /*
  36. * Redefine some basic types used by structures defined herein.  This allows
  37. * both the library and server to view communicated data as 32-bit entities,
  38. * thus preventing problems on 64-bit architectures where libXext sees this
  39. * data as 64 bits and the server sees it as 32 bits.
  40. */
  41.  
  42. #define Colormap CARD32
  43. #define VisualID CARD32
  44. #define Window CARD32
  45.  
  46. typedef struct _XagQueryVersion {
  47.     CARD8 reqType; /* always XagReqCode */
  48.     CARD8 xagReqType; /* always X_XagQueryVersion */
  49.     CARD16 length B16;
  50.     CARD16 client_major_version B16;
  51.     CARD16 client_minor_version B16;
  52. } xXagQueryVersionReq;
  53. #define sz_xXagQueryVersionReq 8
  54. typedef struct {
  55.     BYTE type; /* X_Reply */
  56.     BOOL pad1;
  57.     CARD16 sequence_number B16;
  58.     CARD32 length B32;
  59.     CARD16 server_major_version B16;
  60.     CARD16 server_minor_version B16;
  61.     CARD32 pad2 B32;
  62.     CARD32 pad3 B32;
  63.     CARD32 pad4 B32;
  64.     CARD32 pad5 B32;
  65.     CARD32 pad6 B32;
  66. } xXagQueryVersionReply;
  67. #define sz_xXagQueryVersionReply 32
  68. /* Set AppGroup Attributes masks */
  69. #define XagSingleScreenMask 1 << 0
  70. #define XagDefaultRootMask 1 << XagNdefaultRoot
  71. #define XagRootVisualMask 1 << XagNrootVisual
  72. #define XagDefaultColormapMask 1 << XagNdefaultColormap
  73. #define XagBlackPixelMask 1 << XagNblackPixel
  74. #define XagWhitePixelMask 1 << XagNwhitePixel
  75. #define XagAppGroupLeaderMask 1 << XagNappGroupLeader
  76. typedef struct _XagCreate {
  77.     CARD8 reqType; /* always XagReqCode */
  78.     CARD8 xagReqType; /* always X_XagCreate */
  79.     CARD16 length B16;
  80.     XAppGroup app_group B32;
  81.     CARD32 attrib_mask B32; /* LISTofVALUE follows */
  82. } xXagCreateReq;
  83. #define sz_xXagCreateReq 12
  84. typedef struct _XagDestroy {
  85.     CARD8 reqType; /* always XagReqCode */
  86.     CARD8 xagReqType; /* always X_XagDestroy */
  87.     CARD16 length B16;
  88.     XAppGroup app_group  B32;
  89. } xXagDestroyReq;
  90. #define sz_xXagDestroyReq 8
  91. typedef struct _XagGetAttr {
  92.     CARD8 reqType; /* always XagReqCode */
  93.     CARD8 xagReqType; /* always X_XagGetAttr */
  94.     CARD16 length B16;
  95.     XAppGroup app_group B32;
  96. } xXagGetAttrReq;
  97. #define sz_xXagGetAttrReq 8
  98. typedef struct {
  99.     BYTE type; /* X_Reply */
  100.     BOOL pad1;
  101.     CARD16 sequence_number B16;
  102.     CARD32 length B32;
  103.     Window default_root B32;
  104.     VisualID root_visual B32;
  105.     Colormap default_colormap B32;
  106.     CARD32 black_pixel B32;
  107.     CARD32 white_pixel B32;
  108.     BOOL single_screen;
  109.     BOOL app_group_leader;
  110.     CARD16 pad2 B16;
  111. } xXagGetAttrReply;
  112. #define sz_xXagGetAttrReply 32
  113. typedef struct _XagQuery {
  114.     CARD8 reqType; /* always XagReqCode */
  115.     CARD8 xagReqType; /* always X_XagQuery */
  116.     CARD16 length B16;
  117.     CARD32 resource B32;
  118. } xXagQueryReq;
  119. #define sz_xXagQueryReq 8
  120. typedef struct {
  121.     BYTE type; /* X_Reply */
  122.     BOOL pad1;
  123.     CARD16 sequence_number B16;
  124.     CARD32 length B32;
  125.     XAppGroup app_group B32;
  126.     CARD32 pad2 B32;
  127.     CARD32 pad3 B32;
  128.     CARD32 pad4 B32;
  129.     CARD32 pad5 B32;
  130.     CARD32 pad6 B32;
  131. } xXagQueryReply;
  132. #define sz_xXagQueryReply 32
  133. typedef struct _XagCreateAssoc {
  134.     CARD8 reqType; /* always XagReqCode */
  135.     CARD8 xagReqType; /* always X_XagCreateAssoc */
  136.     CARD16 length B16;
  137.     Window window B32;
  138.     CARD16 window_type B16;
  139.     CARD16 system_window_len B16; /* LISTofCARD8 follows */
  140. } xXagCreateAssocReq;
  141. #define sz_xXagCreateAssocReq 12
  142. typedef struct _XagDestroyAssoc {
  143.     CARD8 reqType; /* always XagReqCode */
  144.     CARD8 xagReqType; /* always X_XagDestroyAssoc */
  145.     CARD16 length B16;
  146.     Window window B32;
  147. } xXagDestroyAssocReq;
  148. #define sz_xXagDestroyAssocReq 8
  149. #undef XAppGroup
  150. /*
  151.  * Cancel the previous redefinition of the basic types, thus restoring their
  152.  * X.h definitions.
  153.  */
  154. #undef Window
  155. #undef Colormap
  156. #undef VisualID
  157. #endif /* } _XAGSTR_H_ */