X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=include%2Fbabeltrace%2Fformat.h;h=9478dcf4943cbe8aa4a19db7ea2636849bc5a52b;hp=bc2bdb067c0b75b1041738d2317ccd1a4bf7e03c;hb=334c0a83321f9140dec6436ed0c5cbb1af8ec895;hpb=11796b9629d5a870163e4edd67e457576553aaef diff --git a/include/babeltrace/format.h b/include/babeltrace/format.h index bc2bdb06..9478dcf4 100644 --- a/include/babeltrace/format.h +++ b/include/babeltrace/format.h @@ -66,6 +66,14 @@ struct format { const struct type_class_struct *struct_class); void (*struct_end)(struct stream_pos *pos, const struct type_class_struct *struct_class); + void (*array_begin)(struct stream_pos *pos, + const struct type_class_array *array_class); + void (*array_end)(struct stream_pos *pos, + const struct type_class_array *array_class); + void (*sequence_begin)(struct stream_pos *pos, + const struct type_class_sequence *sequence_class); + void (*sequence_end)(struct stream_pos *pos, + const struct type_class_sequence *sequence_class); }; struct format *bt_lookup_format(GQuark qname);