VirtualBox

source: vbox/trunk/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/xf86Version.h@ 32915

Last change on this file since 32915 was 25078, checked in by vboxsync, 15 years ago

Additions/x11/x11include: exported and set eol-style on new headers

  • Property svn:eol-style set to native
File size: 2.4 KB
Line 
1
2/*
3 * Copyright (c) 1994-2003 by The XFree86 Project, Inc.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
19 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
20 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
21 * OTHER DEALINGS IN THE SOFTWARE.
22 *
23 * Except as contained in this notice, the name of the copyright holder(s)
24 * and author(s) shall not be used in advertising or otherwise to promote
25 * the sale, use or other dealings in this Software without prior written
26 * authorization from the copyright holder(s) and author(s).
27 */
28
29#ifndef XF86_VERSION_CURRENT
30
31#define XF86_VERSION_MAJOR 4
32#define XF86_VERSION_MINOR 3
33#define XF86_VERSION_PATCH 99
34#define XF86_VERSION_SNAP 902
35
36/* This has five arguments for compatibilty reasons */
37#define XF86_VERSION_NUMERIC(major,minor,patch,snap,dummy) \
38 (((major) * 10000000) + ((minor) * 100000) + ((patch) * 1000) + snap)
39
40#define XF86_GET_MAJOR_VERSION(vers) ((vers) / 10000000)
41#define XF86_GET_MINOR_VERSION(vers) (((vers) % 10000000) / 100000)
42#define XF86_GET_PATCH_VERSION(vers) (((vers) % 100000) / 1000)
43#define XF86_GET_SNAP_VERSION(vers) ((vers) % 1000)
44
45/* Define these for compatibility. They'll be removed at some point. */
46#define XF86_VERSION_SUBMINOR XF86_VERSION_PATCH
47#define XF86_VERSION_BETA 0
48#define XF86_VERSION_ALPHA XF86_VERSION_SNAP
49
50#define XF86_VERSION_CURRENT \
51 XF86_VERSION_NUMERIC(XF86_VERSION_MAJOR, \
52 XF86_VERSION_MINOR, \
53 XF86_VERSION_PATCH, \
54 XF86_VERSION_SNAP, \
55 0)
56
57#endif
58
59/* $XConsortium: xf86Version.h /main/78 1996/10/28 05:42:10 kaleb $ */
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