Babeltrace 2 C API  2.0.3
Open-source trace manipulation framework
 All Functions Variables Typedefs Enumerations Enumerator Modules Pages
version.h
1 #ifndef BABELTRACE2_VERSION_H
2 #define BABELTRACE2_VERSION_H
3 
4 /*
5  * Copyright (c) 2010-2019 EfficiOS Inc. and Linux Foundation
6  *
7  * Permission is hereby granted, free of charge, to any person obtaining a copy
8  * of this software and associated documentation files (the "Software"), to deal
9  * in the Software without restriction, including without limitation the rights
10  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11  * copies of the Software, and to permit persons to whom the Software is
12  * furnished to do so, subject to the following conditions:
13  *
14  * The above copyright notice and this permission notice shall be included in
15  * all copies or substantial portions of the Software.
16  *
17  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23  * SOFTWARE.
24  */
25 
26 #ifndef __BT_IN_BABELTRACE_H
27 # error "Please include <babeltrace2/babeltrace.h> instead."
28 #endif
29 
30 #ifdef __cplusplus
31 extern "C" {
32 #endif
33 
85 extern unsigned int bt_version_get_major(void);
86 
94 extern unsigned int bt_version_get_minor(void);
95 
103 extern unsigned int bt_version_get_patch(void);
104 
115 extern const char *bt_version_get_development_stage(void);
116 
129 extern const char *bt_version_get_vcs_revision_description(void);
130 
144 extern const char *bt_version_get_name(void);
145 
159 extern const char *bt_version_get_name_description(void);
160 
171 extern const char *bt_version_get_extra_name(void);
172 
187 extern const char *bt_version_get_extra_description(void);
188 
204 extern const char *bt_version_get_extra_patch_names(void);
205 
208 #ifdef __cplusplus
209 }
210 #endif
211 
212 #endif /* BABELTRACE2_VERSION_H */
const char * bt_version_get_name_description(void)
Returns libbabeltrace2's release name's description.
const char * bt_version_get_vcs_revision_description(void)
Returns the version control system (VCS) revision's description of libbabeltrace2's version...
const char * bt_version_get_extra_name(void)
Returns the extra name of libbabeltrace2's version.
unsigned int bt_version_get_major(void)
Returns the major version of libbabeltrace2.
unsigned int bt_version_get_minor(void)
Returns the minor version of libbabeltrace2.
unsigned int bt_version_get_patch(void)
Returns the patch version of libbabeltrace2.
const char * bt_version_get_extra_description(void)
Returns the extra description of libbabeltrace2's version.
const char * bt_version_get_name(void)
Returns libbabeltrace2's release name.
const char * bt_version_get_development_stage(void)
Returns the development stage of libbabeltrace2's version.
const char * bt_version_get_extra_patch_names(void)
Returns the extra patch names of libbabeltrace2's version.