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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * $Id: composite.h,v 1.4 2004/07/08 07:20:55 keithp Exp $
  3.  *
  4.  * Copyright © 2006 Sun Microsystems
  5.  *
  6.  * Permission to use, copy, modify, distribute, and sell this software and its
  7.  * documentation for any purpose is hereby granted without fee, provided that
  8.  * the above copyright notice appear in all copies and that both that
  9.  * copyright notice and this permission notice appear in supporting
  10.  * documentation, and that the name of Sun Microsystems not be used in
  11.  * advertising or publicity pertaining to distribution of the software without
  12.  * specific, written prior permission.  Sun Microsystems makes no
  13.  * representations about the suitability of this software for any purpose.  It
  14.  * is provided "as is" without express or implied warranty.
  15.  *
  16.  * SUN MICROSYSTEMS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  17.  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
  18.  * EVENT SHALL SUN MICROSYSTEMS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  19.  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
  20.  * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  21.  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  22.  * PERFORMANCE OF THIS SOFTWARE.
  23.  *
  24.  * Copyright © 2003 Keith Packard
  25.  *
  26.  * Permission to use, copy, modify, distribute, and sell this software and its
  27.  * documentation for any purpose is hereby granted without fee, provided that
  28.  * the above copyright notice appear in all copies and that both that
  29.  * copyright notice and this permission notice appear in supporting
  30.  * documentation, and that the name of Keith Packard not be used in
  31.  * advertising or publicity pertaining to distribution of the software without
  32.  * specific, written prior permission.  Keith Packard makes no
  33.  * representations about the suitability of this software for any purpose.  It
  34.  * is provided "as is" without express or implied warranty.
  35.  *
  36.  * KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  37.  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
  38.  * EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  39.  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
  40.  * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  41.  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  42.  * PERFORMANCE OF THIS SOFTWARE.
  43.  */
  44. #ifndef _COMPOSITE_H_
  45. #define _COMPOSITE_H_
  46. #include <X11/extensions/xfixeswire.h>
  47. #define COMPOSITE_NAME "Composite"
  48. #define COMPOSITE_MAJOR 0
  49. #define COMPOSITE_MINOR 4
  50. #define CompositeRedirectAutomatic 0
  51. #define CompositeRedirectManual 1
  52. #define X_CompositeQueryVersion 0
  53. #define X_CompositeRedirectWindow 1
  54. #define X_CompositeRedirectSubwindows 2
  55. #define X_CompositeUnredirectWindow 3
  56. #define X_CompositeUnredirectSubwindows 4
  57. #define X_CompositeCreateRegionFromBorderClip 5
  58. #define X_CompositeNameWindowPixmap 6
  59. #define X_CompositeGetOverlayWindow             7
  60. #define X_CompositeReleaseOverlayWindow         8
  61. #define CompositeNumberRequests     (X_CompositeReleaseOverlayWindow + 1)
  62. #define CompositeNumberEvents 0
  63. #endif /* _COMPOSITE_H_ */