VirtualBox

source: vbox/trunk/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/xfixes.h@ 77938

Last change on this file since 77938 was 69348, checked in by vboxsync, 7 years ago

Additions/x11: scm updates

File size: 1.8 KB
Line 
1/*
2 * $Id: xfixes.h,v 1.5 2005/07/01 22:43:42 daniels Exp $
3 *
4 * Copyright © 2002 Keith Packard
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 Keith Packard not be used in
11 * advertising or publicity pertaining to distribution of the software without
12 * specific, written prior permission. Keith Packard 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 * KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
17 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
18 * EVENT SHALL KEITH PACKARD 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
25#ifdef HAVE_DIX_CONFIG_H
26#include <dix-config.h>
27#endif
28
29#ifndef _XFIXES_H_
30#define _XFIXES_H_
31
32#include "resource.h"
33
34extern RESTYPE RegionResType;
35extern int XFixesErrorBase;
36
37#define VERIFY_REGION(pRegion, rid, client, mode) { \
38 pRegion = SecurityLookupIDByType (client, rid, RegionResType, mode); \
39 if (!pRegion) { \
40 client->errorValue = rid; \
41 return XFixesErrorBase + BadRegion; \
42 } \
43}
44
45#define VERIFY_REGION_OR_NONE(pRegion, rid, client, mode) { \
46 pRegion = 0; \
47 if (rid) VERIFY_REGION(pRegion, rid, client, mode); \
48}
49
50RegionPtr
51XFixesRegionCopy (RegionPtr pRegion);
52
53
54#endif /* _XFIXES_H_ */
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette