Imported Upstream version 1.15.1
[deb_xorg-server.git] / hw / xquartz / quartzCommon.h
CommitLineData
a09e091a
JB
1/*
2 * quartzCommon.h
3 *
4 * Common definitions used internally by all Quartz modes
5 *
6 * This file should be included before any X11 or IOKit headers
7 * so that it can avoid symbol conflicts.
8 *
9 * Copyright (c) 2001-2004 Torrey T. Lyons and Greg Parker.
10 * All Rights Reserved.
11 *
12 * Permission is hereby granted, free of charge, to any person obtaining a
13 * copy of this software and associated documentation files (the "Software"),
14 * to deal in the Software without restriction, including without limitation
15 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
16 * and/or sell copies of the Software, and to permit persons to whom the
17 * Software is furnished to do so, subject to the following conditions:
18 *
19 * The above copyright notice and this permission notice shall be included in
20 * all copies or substantial portions of the Software.
21 *
22 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
25 * THE ABOVE LISTED COPYRIGHT HOLDER(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
26 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
27 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
28 * DEALINGS IN THE SOFTWARE.
29 *
30 * Except as contained in this notice, the name(s) of the above copyright
31 * holders shall not be used in advertising or otherwise to promote the sale,
32 * use or other dealings in this Software without prior written authorization.
33 */
34
35#ifndef _QUARTZCOMMON_H
36#define _QUARTZCOMMON_H
37
38#include <X11/Xdefs.h>
39#include "privates.h"
40
41// Other shared data
42extern DevPrivateKeyRec quartzScreenKeyRec;
43#define quartzScreenKey (&quartzScreenKeyRec)
44extern int aquaMenuBarHeight;
45
46// Name of GLX bundle for native OpenGL
47extern const char *quartzOpenGLBundle;
48
49void
50QuartzBlockHandler(pointer blockData, OSTimePtr pTimeout, pointer pReadmask);
51void
52QuartzWakeupHandler(pointer blockData, int result, pointer pReadmask);
53
54#endif /* _QUARTZCOMMON_H */