VirtualBox

source: vbox/trunk/include/iprt/buildconfig.h@ 75704

Last change on this file since 75704 was 69105, checked in by vboxsync, 7 years ago

include/iprt/: (C) year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.2 KB
Line 
1/** @file
2 * IPRT - Build Configuration Information
3 */
4
5/*
6 * Copyright (C) 2009-2017 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef ___iprt_buildconfig_h
27#define ___iprt_buildconfig_h
28
29#include <iprt/cdefs.h>
30#include <iprt/types.h>
31
32RT_C_DECLS_BEGIN
33
34/** @defgroup grp_rt_buildconfig RTBldCfg - Build Configuration Information
35 * @ingroup grp_rt
36 * @{
37 */
38
39/**
40 * Gets the source code management revision of the IPRT build.
41 * @returns Source code management revision number.
42 */
43RTDECL(uint32_t) RTBldCfgRevision(void);
44
45/**
46 * Gets the source code management revision of the IPRT build.
47 * @returns Read only string containing the revision number.
48 */
49RTDECL(const char *) RTBldCfgRevisionStr(void);
50
51/**
52 * Gets the product version string.
53 *
54 * This will be a string on the form "x.y.z[_string]".
55 *
56 * @returns Read only version string.
57 *
58 * @remarks This is a build time configuration thing that the product using IPRT
59 * will set. It is therefore not any IPRT version, but rather the
60 * version of that product.
61 */
62RTDECL(const char *) RTBldCfgVersion(void);
63
64/**
65 * Gets the major product version number.
66 * @returns Major product version number.
67 * @remarks See RTBldCfgVersion.
68 */
69RTDECL(uint32_t) RTBldCfgVersionMajor(void);
70
71/**
72 * Gets the minor product version number.
73 * @returns Minor product version number.
74 * @remarks See RTBldCfgVersion.
75 */
76RTDECL(uint32_t) RTBldCfgVersionMinor(void);
77
78/**
79 * Gets the product build number.
80 * @returns Product build number.
81 * @remarks See RTBldCfgVersion.
82 */
83RTDECL(uint32_t) RTBldCfgVersionBuild(void);
84
85/**
86 * Gets the build target name.
87 *
88 * @returns Read only build target string.
89 */
90RTDECL(const char *) RTBldCfgTarget(void);
91
92/**
93 * Gets the build target architecture name.
94 *
95 * @returns Read only build target architecture string.
96 */
97RTDECL(const char *) RTBldCfgTargetArch(void);
98
99/**
100 * Gets the build target-dot-architecture name.
101 *
102 * @returns Read only build target-dot-architecture string.
103 */
104RTDECL(const char *) RTBldCfgTargetDotArch(void);
105
106/**
107 * Gets the build type name.
108 *
109 * @returns Read only build type string.
110 */
111RTDECL(const char *) RTBldCfgType(void);
112
113/**
114 * Gets the name of the compiler used for building IPRT.
115 *
116 * @returns Read only compiler name.
117 */
118RTDECL(const char *) RTBldCfgCompiler(void);
119
120/** @} */
121
122RT_C_DECLS_END
123
124#endif
125
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