API fix/breakage : reexporting bt_ctf_event
[babeltrace.git] / include / babeltrace / ctf / events-internal.h
index bd50100d0ea37a7fed53d116f335f3a5e66d2aaf..b01fda4bc199a483621aa9f6c428bc0c504eeb5a 100644 (file)
 
 struct ctf_stream_definition;
 
+/*
+ * These structures are public mappings to internal ctf_event structures.
+ */
+struct bt_ctf_event {
+       struct ctf_event_definition *parent;
+};
+
+struct bt_ctf_event_decl {
+       struct ctf_event_declaration *parent;
+};
+
 struct bt_ctf_iter {
        struct bt_iter parent;
-       struct ctf_event_definition current_ctf_event;  /* last read event */
+       struct bt_ctf_event current_ctf_event;  /* last read event */
        GArray *callbacks;                              /* Array of struct bt_stream_callbacks */
        struct bt_callback_chain main_callbacks;        /* For all events */
        /*
This page took 0.023579 seconds and 4 git commands to generate.