lib: strictly type function return status enumerations
[babeltrace.git] / src / plugins / ctf / fs-sink / fs-sink.h
index d4255aefb9076094b1df78fd9280f552c856cf27..d1c95c789cd1b9d10d211170ae5893e465786bef 100644 (file)
@@ -29,7 +29,8 @@
 #include <glib.h>
 
 struct fs_sink_comp {
-       bt_self_component_sink *self_comp;
+       bt_logging_level log_level;
+       bt_self_component *self_comp;
 
        /* Owned by this */
        bt_self_component_port_input_message_iterator *upstream_iter;
@@ -65,17 +66,17 @@ struct fs_sink_comp {
 };
 
 BT_HIDDEN
-bt_self_component_status ctf_fs_sink_init(
+bt_component_class_init_method_status ctf_fs_sink_init(
                bt_self_component_sink *component,
                const bt_value *params,
                void *init_method_data);
 
 BT_HIDDEN
-bt_self_component_status ctf_fs_sink_consume(
+bt_component_class_sink_consume_method_status ctf_fs_sink_consume(
                bt_self_component_sink *component);
 
 BT_HIDDEN
-bt_self_component_status ctf_fs_sink_graph_is_configured(
+bt_component_class_sink_graph_is_configured_method_status ctf_fs_sink_graph_is_configured(
                bt_self_component_sink *component);
 
 BT_HIDDEN
This page took 0.02495 seconds and 4 git commands to generate.