|
||||
File indexing completed on 2025-01-18 10:14:17
0001 /* 0002 * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 0003 * 0004 * Permission is hereby granted, free of charge, to any person obtaining a 0005 * copy of this software and associated documentation files (the "Software"), 0006 * to deal in the Software without restriction, including without limitation 0007 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 0008 * and/or sell copies of the Software, and to permit persons to whom the 0009 * Software is furnished to do so, subject to the following conditions: 0010 * 0011 * The above copyright notice and this permission notice (including the next 0012 * paragraph) shall be included in all copies or substantial portions of the 0013 * Software. 0014 * 0015 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 0016 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 0017 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 0018 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 0019 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 0020 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 0021 * DEALINGS IN THE SOFTWARE. 0022 */ 0023 /* 0024 * Copyright © 2003 Keith Packard 0025 * 0026 * Permission to use, copy, modify, distribute, and sell this software and its 0027 * documentation for any purpose is hereby granted without fee, provided that 0028 * the above copyright notice appear in all copies and that both that 0029 * copyright notice and this permission notice appear in supporting 0030 * documentation, and that the name of Keith Packard not be used in 0031 * advertising or publicity pertaining to distribution of the software without 0032 * specific, written prior permission. Keith Packard makes no 0033 * representations about the suitability of this software for any purpose. It 0034 * is provided "as is" without express or implied warranty. 0035 * 0036 * KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 0037 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 0038 * EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR 0039 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 0040 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 0041 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 0042 * PERFORMANCE OF THIS SOFTWARE. 0043 */ 0044 0045 #ifndef _COMPOSITE_H_ 0046 #define _COMPOSITE_H_ 0047 0048 #include <X11/extensions/xfixeswire.h> 0049 0050 #define COMPOSITE_NAME "Composite" 0051 #define COMPOSITE_MAJOR 0 0052 #define COMPOSITE_MINOR 4 0053 0054 #define CompositeRedirectAutomatic 0 0055 #define CompositeRedirectManual 1 0056 0057 #define X_CompositeQueryVersion 0 0058 #define X_CompositeRedirectWindow 1 0059 #define X_CompositeRedirectSubwindows 2 0060 #define X_CompositeUnredirectWindow 3 0061 #define X_CompositeUnredirectSubwindows 4 0062 #define X_CompositeCreateRegionFromBorderClip 5 0063 #define X_CompositeNameWindowPixmap 6 0064 #define X_CompositeGetOverlayWindow 7 0065 #define X_CompositeReleaseOverlayWindow 8 0066 0067 #define CompositeNumberRequests (X_CompositeReleaseOverlayWindow + 1) 0068 0069 #define CompositeNumberEvents 0 0070 0071 #endif /* _COMPOSITE_H_ */
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |