Fix: add missing void param to bt_clock_class_priority_map_create
[babeltrace.git] / bindings / python / bt2 / native_btstream.i
index 91d4dd8222137ae7d526f2293371accd4d17426f..39747bc7c92a474faff5e0fe23ee4c00a491a6ce 100644 (file)
  * THE SOFTWARE.
  */
 
-%{
-#include <babeltrace/ctf-ir/stream.h>
-%}
-
 /* Type */
 struct bt_ctf_stream;
 
@@ -33,6 +29,10 @@ struct bt_ctf_stream;
 struct bt_ctf_stream *bt_ctf_stream_create(
                struct bt_ctf_stream_class *stream_class,
                const char *name);
+struct bt_ctf_stream *bt_ctf_stream_create_with_id(
+               struct bt_ctf_stream_class *stream_class,
+               const char *name, uint64_t id);
 const char *bt_ctf_stream_get_name(struct bt_ctf_stream *stream);
+int64_t bt_ctf_stream_get_id(struct bt_ctf_stream *stream);
 struct bt_ctf_stream_class *bt_ctf_stream_get_class(
                struct bt_ctf_stream *stream);
This page took 0.023754 seconds and 4 git commands to generate.