VirtualBox

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

Last change on this file since 78293 was 40349, checked in by vboxsync, 13 years ago

Additions/xorg: support X.Org Server 1.12.

  • Property svn:eol-style set to native
File size: 2.3 KB
Line 
1/*
2 * Copyright © 2002 Keith Packard
3 *
4 * Permission to use, copy, modify, distribute, and sell this software and its
5 * documentation for any purpose is hereby granted without fee, provided that
6 * the above copyright notice appear in all copies and that both that
7 * copyright notice and this permission notice appear in supporting
8 * documentation, and that the name of Keith Packard not be used in
9 * advertising or publicity pertaining to distribution of the software without
10 * specific, written prior permission. Keith Packard makes no
11 * representations about the suitability of this software for any purpose. It
12 * is provided "as is" without express or implied warranty.
13 *
14 * KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16 * EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
20 * PERFORMANCE OF THIS SOFTWARE.
21 */
22
23#ifdef HAVE_DIX_CONFIG_H
24#include <dix-config.h>
25#endif
26
27#ifndef _XFIXES_H_
28#define _XFIXES_H_
29
30#include "resource.h"
31
32extern _X_EXPORT RESTYPE RegionResType;
33extern _X_EXPORT RESTYPE PointerBarrierType;
34extern _X_EXPORT int XFixesErrorBase;
35
36#define VERIFY_REGION(pRegion, rid, client, mode) \
37 do { \
38 int err; \
39 err = dixLookupResourceByType((pointer *) &pRegion, rid, \
40 RegionResType, client, mode); \
41 if (err != Success) { \
42 client->errorValue = rid; \
43 return err; \
44 } \
45 } while (0)
46
47#define VERIFY_REGION_OR_NONE(pRegion, rid, client, mode) { \
48 pRegion = 0; \
49 if (rid) VERIFY_REGION(pRegion, rid, client, mode); \
50}
51
52extern _X_EXPORT RegionPtr
53XFixesRegionCopy (RegionPtr pRegion);
54
55struct PointerBarrier {
56 CARD16 x1, x2, y1, y2;
57 CARD32 directions;
58};
59
60
61extern int
62barrier_get_direction(int, int, int, int);
63extern BOOL
64barrier_is_blocking(const struct PointerBarrier*, int, int, int, int, double*);
65extern BOOL
66barrier_is_blocking_direction(const struct PointerBarrier*, int);
67extern void
68barrier_clamp_to_barrier(struct PointerBarrier *barrier, int dir, int *x, int *y);
69
70
71
72#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