bin: compile lttng-sessiond as C++
[lttng-tools.git] / include / lttng / action / list-internal.h
index 4aca7fa2721bfd77ad2c1dc2b94d98e0d9cdb661..3d7a5ba60f03d9b604a726347a1500259f0b166d 100644 (file)
 
 #include <common/macros.h>
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 struct lttng_action;
 struct lttng_payload_view;
+struct mi_writer;
+struct mi_lttng_error_query_callbacks;
+struct lttng_dynamic_array;
+struct lttng_trigger;
 
 /*
  * Create an action list from a payload view.
@@ -21,13 +29,22 @@ struct lttng_payload_view;
  * On success, return the number of bytes consumed from `view`, and the created
  * list in `*list`. On failure, return -1.
  */
-LTTNG_HIDDEN
 extern ssize_t lttng_action_list_create_from_payload(
                struct lttng_payload_view *view,
                struct lttng_action **list);
 
-LTTNG_HIDDEN
 extern struct lttng_action *lttng_action_list_borrow_mutable_at_index(
                const struct lttng_action *list, unsigned int index);
 
+enum lttng_error_code lttng_action_list_mi_serialize(const struct lttng_trigger *trigger,
+               const struct lttng_action *action,
+               struct mi_writer *writer,
+               const struct mi_lttng_error_query_callbacks
+                               *error_query_callbacks,
+               struct lttng_dynamic_array *action_path_indexes);
+
+#ifdef __cplusplus
+}
+#endif
+
 #endif /* LTTNG_ACTION_LIST_INTERNAL_H */
This page took 0.023605 seconds and 4 git commands to generate.