lib: add structure FC member and variant FC option objects
[babeltrace.git] / include / babeltrace / types.h
CommitLineData
c55a9f58
PP
1#ifndef BABELTRACE_TYPES_H
2#define BABELTRACE_TYPES_H
3
4/*
5 * Copyright (c) 2017 Philippe Proulx <pproulx@efficios.com>
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
44c440bc
PP
26#include <stdint.h>
27
c55a9f58
PP
28#ifdef __cplusplus
29extern "C" {
30#endif
31
32/**
33@defgroup ctypes Babeltrace C types
34@ingroup apiref
35@brief Babeltrace C types.
36
37@code
38#include <babeltrace/types.h>
39@endcode
40
41This header contains custom type definitions used across the library.
42
43@file
44@brief Babeltrace C types.
45@sa ctypes
46
47@addtogroup ctypes
48@{
49*/
50
51/// False boolean value for the #bt_bool type.
52#define BT_FALSE 0
53
54/// True boolean value for the #bt_bool type.
55#define BT_TRUE 1
56
57/**
58@brief Babeltrace's boolean type.
59
60Use only the #BT_FALSE and #BT_TRUE definitions for #bt_bool parameters.
61It is guaranteed that the library functions which return a #bt_bool
62value return either #BT_FALSE or #BT_TRUE.
63
64You can always test the truthness of a #bt_bool value directly, without
65comparing it to #BT_TRUE directly:
66
67@code
68bt_bool ret = bt_some_function(...);
69
70if (ret) {
71 // ret is true
72}
73@endcode
74*/
75typedef int bt_bool;
76
44c440bc
PP
77typedef const uint8_t *bt_uuid;
78
b19ff26f 79typedef struct bt_clock_class bt_clock_class;
605e1019 80typedef struct bt_clock_snapshot bt_clock_snapshot;
b19ff26f
PP
81typedef struct bt_component bt_component;
82typedef struct bt_component_class bt_component_class;
83typedef struct bt_component_class_filter bt_component_class_filter;
84typedef struct bt_component_class_sink bt_component_class_sink;
85typedef struct bt_component_class_source bt_component_class_source;
86typedef struct bt_component_filter bt_component_filter;
87typedef struct bt_component_graph bt_component_graph;
88typedef struct bt_component_sink bt_component_sink;
89typedef struct bt_component_source bt_component_source;
90typedef struct bt_connection bt_connection;
91typedef struct bt_event bt_event;
92typedef struct bt_event_class bt_event_class;
93typedef struct bt_event_header_field bt_event_header_field;
94typedef struct bt_field bt_field;
95typedef struct bt_field_class bt_field_class;
96typedef struct bt_field_class_signed_enumeration_mapping_ranges bt_field_class_signed_enumeration_mapping_ranges;
97typedef struct bt_field_class_unsigned_enumeration_mapping_ranges bt_field_class_unsigned_enumeration_mapping_ranges;
1e6fd1d7
PP
98typedef struct bt_field_class_structure_member bt_field_class_structure_member;
99typedef struct bt_field_class_variant_option bt_field_class_variant_option;
b19ff26f
PP
100typedef struct bt_field_path bt_field_path;
101typedef struct bt_graph bt_graph;
d6e69534
PP
102typedef struct bt_message bt_message;
103typedef struct bt_message_iterator bt_message_iterator;
b19ff26f
PP
104typedef struct bt_object bt_object;
105typedef struct bt_packet bt_packet;
106typedef struct bt_packet_context_field bt_packet_context_field;
107typedef struct bt_packet_header_field bt_packet_header_field;
108typedef struct bt_plugin bt_plugin;
109typedef struct bt_plugin_set bt_plugin_set;
110typedef struct bt_plugin_so_shared_lib_handle bt_plugin_so_shared_lib_handle;
111typedef struct bt_port bt_port;
112typedef struct bt_port_input bt_port_input;
113typedef struct bt_port_output bt_port_output;
d6e69534 114typedef struct bt_port_output_message_iterator bt_port_output_message_iterator;
b19ff26f
PP
115typedef struct bt_query_executor bt_query_executor;
116typedef struct bt_self_component bt_self_component;
117typedef struct bt_self_component_class_filter bt_self_component_class_filter;
118typedef struct bt_self_component_class_sink bt_self_component_class_sink;
119typedef struct bt_self_component_class_source bt_self_component_class_source;
120typedef struct bt_self_component_filter bt_self_component_filter;
121typedef struct bt_self_component_port bt_self_component_port;
122typedef struct bt_self_component_port_input bt_self_component_port_input;
d6e69534 123typedef struct bt_self_component_port_input_message_iterator bt_self_component_port_input_message_iterator;
b19ff26f
PP
124typedef struct bt_self_component_port_output bt_self_component_port_output;
125typedef struct bt_self_component_sink bt_self_component_sink;
126typedef struct bt_self_component_source bt_self_component_source;
d6e69534
PP
127typedef struct bt_self_message_iterator bt_self_message_iterator;
128typedef struct bt_self_port bt_self_port;
b19ff26f
PP
129typedef struct bt_self_port_input bt_self_port_input;
130typedef struct bt_self_port_output bt_self_port_output;
b19ff26f
PP
131typedef struct bt_stream bt_stream;
132typedef struct bt_stream_class bt_stream_class;
133typedef struct bt_trace bt_trace;
134typedef struct bt_trace_class bt_trace_class;
135typedef struct bt_value bt_value;
136
137typedef const char * const *bt_field_class_enumeration_mapping_label_array;
d6e69534 138typedef const struct bt_message **bt_message_array_const;
b19ff26f 139
c55a9f58
PP
140/** @} */
141
142#ifdef __cplusplus
143}
144#endif
145
146#endif /* BABELTRACE_TYPES_H */
This page took 0.037381 seconds and 4 git commands to generate.