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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: XEVI.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 _XEVI_H_
  26. #define _XEVI_H_
  27. #include <X11/Xfuncproto.h>
  28. #define X_EVIQueryVersion 0
  29. #define X_EVIGetVisualInfo 1
  30. #define XEVI_TRANSPARENCY_NONE 0
  31. #define XEVI_TRANSPARENCY_PIXEL 1
  32. #define XEVI_TRANSPARENCY_MASK 2
  33. #ifndef _XEVI_SERVER_
  34. typedef struct {
  35.     VisualID core_visual_id;
  36.     int screen;
  37.     int level;
  38.     unsigned int transparency_type;
  39.     unsigned int transparency_value;
  40.     unsigned int min_hw_colormaps;
  41.     unsigned int max_hw_colormaps;
  42.     unsigned int num_colormap_conflicts;
  43.     VisualID* colormap_conflicts;
  44. } ExtendedVisualInfo;
  45. _XFUNCPROTOBEGIN
  46. Bool XeviQueryExtension(
  47.     Display*            /* dpy */
  48. );
  49. Status XeviQueryVersion(
  50.     Display* /* dpy */,
  51.     int* /* majorVersion */,
  52.     int* /* minorVersion */
  53. );
  54. Status XeviGetVisualInfo(
  55.     Display*   /* dpy */,
  56.     VisualID* /* visual_query */,
  57.     int /* nVisual_query */,
  58.     ExtendedVisualInfo** /* extendedVisualInfo_return */,
  59.     int* /* nInfo_return */
  60. );
  61. _XFUNCPROTOEND
  62. #endif
  63. #endif