lib: make trace IR API const-correct
[babeltrace.git] / include / babeltrace / graph / private-notification-stream.h
index f5bc2d61561739caa6e19a78ba769a33aa4437a6..4274bbd18149002eb4a3299f25497d190fbd9d7d 100644 (file)
@@ -33,30 +33,30 @@ extern "C" {
 
 struct bt_private_notification;
 struct bt_self_notification_iterator;
-struct bt_private_stream;
+struct bt_stream;
 
 extern
 struct bt_private_notification *bt_private_notification_stream_begin_create(
                struct bt_self_notification_iterator *notification_iterator,
-               struct bt_private_stream *stream);
+               struct bt_stream *stream);
 
 extern
 struct bt_private_notification *bt_private_notification_stream_end_create(
                struct bt_self_notification_iterator *notification_iterator,
-               struct bt_private_stream *stream);
+               struct bt_stream *stream);
 
-extern struct bt_private_stream *
+extern struct bt_stream *
 bt_private_notification_stream_begin_borrow_stream(
                struct bt_private_notification *notification);
 
-extern int bt_private_notification_stream_begin_set_default_clock_value(
+extern void bt_private_notification_stream_begin_set_default_clock_value(
                struct bt_private_notification *notif, uint64_t value_cycles);
 
-extern struct bt_private_stream *
+extern struct bt_stream *
 bt_private_notification_stream_end_borrow_stream(
                struct bt_private_notification *notification);
 
-extern int bt_private_notification_stream_end_set_default_clock_value(
+extern void bt_private_notification_stream_end_set_default_clock_value(
                struct bt_private_notification *notif, uint64_t value_cycles);
 
 #ifdef __cplusplus
This page took 0.025442 seconds and 4 git commands to generate.