Cleanup: add `#include <stdbool.h>` whenever `bool` type is used
[babeltrace.git] / src / ctf-writer / event.h
index a51b9011f5e6614bc091da2586a3b2acfe0854b2..115dad7d2eee521108c98160350d41aab30a9714 100644 (file)
@@ -28,6 +28,8 @@
  * http://www.efficios.com/ctf
  */
 
+#include <stdbool.h>
+
 #include "common/assert.h"
 #include "common/macros.h"
 #include <babeltrace2-ctf-writer/field-types.h>
@@ -106,6 +108,10 @@ int bt_ctf_event_common_initialize(struct bt_ctf_event_common *event,
                create_header_field_func_type create_header_field_func,
                release_header_field_func_type release_header_field_func);
 
+BT_HIDDEN
+int bt_ctf_event_common_set_payload(struct bt_ctf_event *event,
+               struct bt_ctf_field *payload);
+
 static inline
 struct bt_ctf_field_common *bt_ctf_event_common_borrow_payload(
                struct bt_ctf_event_common *event)
This page took 0.023875 seconds and 4 git commands to generate.