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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: XEVIstr.h,v 1.3 2000/08/18 04:05:44 coskrey Exp $ */
  2. /************************************************************
  3. Copyright (c) 1997 by Silicon Graphics Computer Systems, Inc.
  4. Permission to use, copy, modify, and distribute this
  5. software and its documentation for any purpose and without
  6. fee is hereby granted, provided that the above copyright
  7. notice appear in all copies and that both that copyright
  8. notice and this permission notice appear in supporting
  9. documentation, and that the name of Silicon Graphics not be
  10. used in advertising or publicity pertaining to distribution
  11. of the software without specific prior written permission.
  12. Silicon Graphics makes no representation about the suitability
  13. of this software for any purpose. It is provided "as is"
  14. without any express or implied warranty.
  15. SILICON GRAPHICS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
  16. SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
  17. AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON
  18. GRAPHICS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
  19. DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
  20. DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
  21. OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION  WITH
  22. THE USE OR PERFORMANCE OF THIS SOFTWARE.
  23. ********************************************************/
  24. /* $XFree86$ */
  25. #ifndef _EVISTR_H_
  26. #define _EVISTR_H_
  27. #include <X11/extensions/XEVI.h>
  28. #define VisualID CARD32
  29. #define EVINAME "Extended-Visual-Information"
  30. #define XEVI_MAJOR_VERSION 1 /* current version numbers */
  31. #define XEVI_MINOR_VERSION 0
  32. typedef CARD32 VisualID32;
  33. #define sz_VisualID32 4
  34. typedef struct _xExtendedVisualInfo {
  35.     VisualID core_visual_id B32;
  36.     INT8 screen;
  37.     INT8 level;
  38.     CARD8 transparency_type;
  39.     CARD8 pad0;
  40.     CARD32 transparency_value B32;
  41.     CARD8 min_hw_colormaps;
  42.     CARD8 max_hw_colormaps;
  43.     CARD16 num_colormap_conflicts B16;
  44. } xExtendedVisualInfo;
  45. #define sz_xExtendedVisualInfo 16
  46. typedef struct _XEVIQueryVersion {
  47.     CARD8 reqType; /* always XEVIReqCode */
  48.     CARD8 xeviReqType; /* always X_EVIQueryVersion */
  49.     CARD16 length B16;
  50. } xEVIQueryVersionReq;
  51. #define sz_xEVIQueryVersionReq 4
  52. typedef struct {
  53.     BYTE type; /* X_Reply */
  54.     CARD8  unused;
  55.     CARD16 sequenceNumber B16;
  56.     CARD32 length B32;
  57.     CARD16 majorVersion B16; /* major version of EVI protocol */
  58.     CARD16 minorVersion B16; /* minor version of EVI protocol */
  59.     CARD32 pad0 B32;
  60.     CARD32 pad1 B32;
  61.     CARD32 pad2 B32;
  62.     CARD32 pad3 B32;
  63.     CARD32 pad4 B32;
  64. } xEVIQueryVersionReply;
  65. #define sz_xEVIQueryVersionReply 32
  66. typedef struct _XEVIGetVisualInfoReq {
  67.     CARD8 reqType; /* always XEVIReqCode */
  68.     CARD8 xeviReqType; /* always X_EVIGetVisualInfo */
  69.     CARD16      length B16;
  70.     CARD32  n_visual B32;
  71. } xEVIGetVisualInfoReq;
  72. #define sz_xEVIGetVisualInfoReq 8
  73. typedef struct _XEVIGetVisualInfoReply {
  74.     BYTE type;  /* X_Reply */
  75.     CARD8 unused;
  76.     CARD16 sequenceNumber B16;
  77.     CARD32 length B32;
  78.     CARD32 n_info B32;
  79.     CARD32 n_conflicts B32;
  80.     CARD32 pad0 B32;
  81.     CARD32 pad1 B32;
  82.     CARD32 pad2 B32;
  83.     CARD32 pad3 B32;
  84. } xEVIGetVisualInfoReply;
  85. #define sz_xEVIGetVisualInfoReply 32
  86. #undef VisualID
  87. #endif /* _EVISTR_H_ */