Removed unneeded ctf_* forward declarations from babeltrace.h
[babeltrace.git] / include / babeltrace / callbacks-internal.h
index 0f0e53780679fa246b30d1696d6843b08723b8b1..c125706504c0bd7b450627742c7627e058e6e15a 100644 (file)
@@ -21,6 +21,9 @@
  * all copies or substantial portions of the Software.
  */
 
+#include <glib.h>
+#include <babeltrace/ctf/events.h>
+
 struct bt_callback {
        int prio;               /* Callback order priority. Lower first. Dynamically assigned from dependency graph. */
        void *private_data;
@@ -28,7 +31,7 @@ struct bt_callback {
        struct bt_dependencies *depends;
        struct bt_dependencies *weak_depends;
        struct bt_dependencies *provides;
-       enum bt_cb_ret (*callback)(struct bt_ctf_data *ctf_data,
+       enum bt_cb_ret (*callback)(struct bt_ctf_event *ctf_data,
                                   void *private_data);
 };
 
@@ -49,7 +52,7 @@ struct bt_dependencies {
        int refcount;                   /* free when decremented to 0 */
 };
 
-void process_callbacks(struct babeltrace_iter *iter,
+void process_callbacks(struct bt_iter *iter,
        struct ctf_stream *stream);
 
 #endif /* _BABELTRACE_CALLBACKS_INTERNAL_H */
This page took 0.02323 seconds and 4 git commands to generate.