API Fix: bt_ctf_iter_read_event_flags
[babeltrace.git] / include / babeltrace / iterator.h
index e658eeec0b5cdc8789e684ca630b4c04d9396d67..7eb3c5ebc4c34ffea7232afd80f8fd041fb739de 100644 (file)
 #include <babeltrace/format.h>
 #include <babeltrace/context.h>
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/* Flags for the iterator read_event */
+enum {
+       BT_ITER_FLAG_LOST_EVENTS        = (1 << 0),
+};
+
 /* Forward declarations */
 struct bt_iter;
 struct bt_saved_pos;
@@ -54,7 +63,6 @@ struct bt_iter_pos {
                BT_SEEK_RESTORE,        /* uses u.restore */
                BT_SEEK_CUR,
                BT_SEEK_BEGIN,
-               BT_SEEK_END,
                BT_SEEK_LAST,
        } type;
        union {
@@ -107,4 +115,8 @@ int bt_iter_set_pos(struct bt_iter *iter, const struct bt_iter_pos *pos);
 struct bt_iter_pos *bt_iter_create_time_pos(struct bt_iter *iter,
                uint64_t timestamp);
 
+#ifdef __cplusplus
+}
+#endif
+
 #endif /* _BABELTRACE_ITERATOR_H */
This page took 0.023348 seconds and 4 git commands to generate.