lib: assign values to all public enumerators
[babeltrace.git] / include / babeltrace2 / types.h
CommitLineData
924dc299
PP
1#ifndef BABELTRACE2_TYPES_H
2#define BABELTRACE2_TYPES_H
c55a9f58
PP
3
4/*
bbb7b5f0 5 * Copyright (c) 2010-2019 EfficiOS Inc. and Linux Foundation
c55a9f58
PP
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
4fa90f32
PP
26#ifndef __BT_IN_BABELTRACE_H
27# error "Please include <babeltrace2/babeltrace.h> instead."
28#endif
29
44c440bc
PP
30#include <stdint.h>
31
c55a9f58
PP
32#ifdef __cplusplus
33extern "C" {
34#endif
35
36/**
37@defgroup ctypes Babeltrace C types
38@ingroup apiref
39@brief Babeltrace C types.
40
41@code
3fadfbc0 42#include <babeltrace2/types.h>
c55a9f58
PP
43@endcode
44
45This header contains custom type definitions used across the library.
46
47@file
48@brief Babeltrace C types.
49@sa ctypes
50
51@addtogroup ctypes
52@{
53*/
54
55/// False boolean value for the #bt_bool type.
56#define BT_FALSE 0
57
58/// True boolean value for the #bt_bool type.
59#define BT_TRUE 1
60
61/**
62@brief Babeltrace's boolean type.
63
64Use only the #BT_FALSE and #BT_TRUE definitions for #bt_bool parameters.
65It is guaranteed that the library functions which return a #bt_bool
66value return either #BT_FALSE or #BT_TRUE.
67
68You can always test the truthness of a #bt_bool value directly, without
69comparing it to #BT_TRUE directly:
70
71@code
72bt_bool ret = bt_some_function(...);
73
74if (ret) {
75 // ret is true
76}
77@endcode
78*/
79typedef int bt_bool;
80
2054a0d1
PP
81typedef uint64_t bt_listener_id;
82
44c440bc
PP
83typedef const uint8_t *bt_uuid;
84
b19ff26f 85typedef struct bt_clock_class bt_clock_class;
605e1019 86typedef struct bt_clock_snapshot bt_clock_snapshot;
b19ff26f
PP
87typedef struct bt_component bt_component;
88typedef struct bt_component_class bt_component_class;
89typedef struct bt_component_class_filter bt_component_class_filter;
90typedef struct bt_component_class_sink bt_component_class_sink;
91typedef struct bt_component_class_source bt_component_class_source;
55f09f52 92typedef struct bt_component_descriptor_set bt_component_descriptor_set;
b19ff26f 93typedef struct bt_component_filter bt_component_filter;
b19ff26f
PP
94typedef struct bt_component_sink bt_component_sink;
95typedef struct bt_component_source bt_component_source;
96typedef struct bt_connection bt_connection;
45c51519
PP
97typedef struct bt_error bt_error;
98typedef struct bt_error_cause bt_error_cause;
b19ff26f
PP
99typedef struct bt_event bt_event;
100typedef struct bt_event_class bt_event_class;
101typedef struct bt_event_header_field bt_event_header_field;
102typedef struct bt_field bt_field;
103typedef struct bt_field_class bt_field_class;
8f3ccfbc 104typedef struct bt_field_class_enumeration_mapping bt_field_class_enumeration_mapping;
9c08c816 105typedef struct bt_field_class_enumeration_signed_mapping bt_field_class_enumeration_signed_mapping;
9c08c816 106typedef struct bt_field_class_enumeration_unsigned_mapping bt_field_class_enumeration_unsigned_mapping;
b70d57a1 107typedef struct bt_field_class_structure_member bt_field_class_structure_member;
1e6fd1d7 108typedef struct bt_field_class_variant_option bt_field_class_variant_option;
9c08c816
PP
109typedef struct bt_field_class_variant_with_selector_signed_option bt_field_class_variant_with_selector_signed_option;
110typedef struct bt_field_class_variant_with_selector_unsigned_option bt_field_class_variant_with_selector_unsigned_option;
b19ff26f 111typedef struct bt_field_path bt_field_path;
66ddcddf 112typedef struct bt_field_path_item bt_field_path_item;
b19ff26f 113typedef struct bt_graph bt_graph;
fb91c0ef
PP
114typedef struct bt_integer_range_set bt_integer_range_set;
115typedef struct bt_integer_range_set_signed bt_integer_range_set_signed;
116typedef struct bt_integer_range_set_unsigned bt_integer_range_set_unsigned;
117typedef struct bt_integer_range_signed bt_integer_range_signed;
118typedef struct bt_integer_range_unsigned bt_integer_range_unsigned;
b70d57a1 119typedef struct bt_interrupter bt_interrupter;
d6e69534
PP
120typedef struct bt_message bt_message;
121typedef struct bt_message_iterator bt_message_iterator;
b19ff26f
PP
122typedef struct bt_object bt_object;
123typedef struct bt_packet bt_packet;
124typedef struct bt_packet_context_field bt_packet_context_field;
125typedef struct bt_packet_header_field bt_packet_header_field;
126typedef struct bt_plugin bt_plugin;
127typedef struct bt_plugin_set bt_plugin_set;
128typedef struct bt_plugin_so_shared_lib_handle bt_plugin_so_shared_lib_handle;
129typedef struct bt_port bt_port;
130typedef struct bt_port_input bt_port_input;
131typedef struct bt_port_output bt_port_output;
d6e69534 132typedef struct bt_port_output_message_iterator bt_port_output_message_iterator;
3c729b9a 133typedef struct bt_private_query_executor bt_private_query_executor;
b19ff26f
PP
134typedef struct bt_query_executor bt_query_executor;
135typedef struct bt_self_component bt_self_component;
553c4bab 136typedef struct bt_self_component_class bt_self_component_class;
b19ff26f
PP
137typedef struct bt_self_component_class_filter bt_self_component_class_filter;
138typedef struct bt_self_component_class_sink bt_self_component_class_sink;
139typedef struct bt_self_component_class_source bt_self_component_class_source;
140typedef struct bt_self_component_filter bt_self_component_filter;
141typedef struct bt_self_component_port bt_self_component_port;
142typedef struct bt_self_component_port_input bt_self_component_port_input;
d6e69534 143typedef struct bt_self_component_port_input_message_iterator bt_self_component_port_input_message_iterator;
b19ff26f
PP
144typedef struct bt_self_component_port_output bt_self_component_port_output;
145typedef struct bt_self_component_sink bt_self_component_sink;
146typedef struct bt_self_component_source bt_self_component_source;
d6e69534 147typedef struct bt_self_message_iterator bt_self_message_iterator;
d24d5663 148typedef struct bt_self_plugin bt_self_plugin;
d6e69534 149typedef struct bt_self_port bt_self_port;
b19ff26f
PP
150typedef struct bt_self_port_input bt_self_port_input;
151typedef struct bt_self_port_output bt_self_port_output;
b19ff26f
PP
152typedef struct bt_stream bt_stream;
153typedef struct bt_stream_class bt_stream_class;
154typedef struct bt_trace bt_trace;
155typedef struct bt_trace_class bt_trace_class;
156typedef struct bt_value bt_value;
157
158typedef const char * const *bt_field_class_enumeration_mapping_label_array;
d6e69534 159typedef const struct bt_message **bt_message_array_const;
b19ff26f 160
c55a9f58
PP
161/** @} */
162
163#ifdef __cplusplus
164}
165#endif
166
924dc299 167#endif /* BABELTRACE2_TYPES_H */
This page took 0.050741 seconds and 4 git commands to generate.