VirtualBox

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

最後變更 在這個檔案從37801是 17471,由 vboxsync 提交於 16 年 前

export to OSE

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

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