XWOS API  4.0
XWOS C/C++ API参考手册
载入中...
搜索中...
未找到
version.h
浏览该文件的文档.
1
13#ifndef __xwos_version_h__
14#define __xwos_version_h__
15
16#ifndef __xwos_standard_h__
17# error "This file should be included from <xwos/standard.h>."
18#endif
19
36#define XWOS_VERSION_MAJOR 4
40#define XWOS_VERSION_MINOR 0
44#define XWOS_VERSION_REVISION 0
45
49#define XWOS_VERSION_PHASE alpha
50
54#define XWOS_VERSION_CODE \
55 (((XWOS_VERSION_MAJOR) << 24) | \
56 ((XWOS_VERSION_MINOR) << 16) | \
57 ((XWOS_VERSION_REVISION) << 0))
58
62#define XWOS_VERSION \
63 stringify(XWOS_VERSION_MAJOR) "." \
64 stringify(XWOS_VERSION_MINOR) "." \
65 stringify(XWOS_VERSION_REVISION) "." \
66 stringify(XWOS_VERSION_PHASE)
67
68#define XWOS_COPYRIGHT "XWOS " XWOS_VERSION \
69 " Copyright (C) 2015 xwos.tech, All Rights Reserved."
70
75#endif /* xwos/version.h */