lib: add aliases for Babeltrace enumeration types
[babeltrace.git] / include / babeltrace / trace-ir / trace-const.h
index 42a80a792185b6a0006c482aa0624c0f68de3084..adb382401c964af440ab27cecc96f94af53fdfa7 100644 (file)
 extern "C" {
 #endif
 
-enum bt_trace_status {
+typedef enum bt_trace_status {
        BT_TRACE_STATUS_OK = 0,
        BT_TRACE_STATUS_NOMEM = -12,
-};
+} bt_trace_status;
 
 typedef void (* bt_trace_is_static_listener_func)(const bt_trace *trace,
                void *data);
@@ -65,13 +65,13 @@ extern const bt_stream *bt_trace_borrow_stream_by_id_const(
 
 extern bt_bool bt_trace_is_static(const bt_trace *trace);
 
-extern enum bt_trace_status bt_trace_add_is_static_listener(
+extern bt_trace_status bt_trace_add_is_static_listener(
                const bt_trace *trace,
                bt_trace_is_static_listener_func listener,
                bt_trace_listener_removed_func listener_removed, void *data,
                uint64_t *listener_id);
 
-extern enum bt_trace_status bt_trace_remove_is_static_listener(
+extern bt_trace_status bt_trace_remove_is_static_listener(
                const bt_trace *trace, uint64_t listener_id);
 
 extern void bt_trace_get_ref(const bt_trace *trace);
This page took 0.024657 seconds and 4 git commands to generate.