X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=include%2Fbabeltrace%2Fgraph%2Fself-component-source.h;h=ed2676e7e60fcb9264679e7e9d59ec7d6d8a8c72;hb=b19ff26f04df428047676dd736bd7cc9473906fe;hp=b9f148b5de97794356fd6566a6f4f995cae37648;hpb=c5b9b4417bedfbec9b5dd23b8395ccdd4eeffc44;p=babeltrace.git diff --git a/include/babeltrace/graph/self-component-source.h b/include/babeltrace/graph/self-component-source.h index b9f148b5..ed2676e7 100644 --- a/include/babeltrace/graph/self-component-source.h +++ b/include/babeltrace/graph/self-component-source.h @@ -28,45 +28,46 @@ /* For enum bt_self_component_status */ #include +/* + * For bt_component_source, bt_self_component, bt_self_component_source, + * bt_self_component_port_output + */ +#include + #ifdef __cplusplus extern "C" { #endif -struct bt_component_source; -struct bt_self_component; -struct bt_self_component_source; -struct bt_self_component_port_output; - static inline -struct bt_self_component *bt_self_component_source_as_self_component( - struct bt_self_component_source *self_comp_source) +bt_self_component *bt_self_component_source_as_self_component( + bt_self_component_source *self_comp_source) { return (void *) self_comp_source; } static inline -const struct bt_component_source * +const bt_component_source * bt_self_component_source_as_component_source( - struct bt_self_component_source *self_comp_source) + bt_self_component_source *self_comp_source) { return (const void *) self_comp_source; } -extern struct bt_self_component_port_output * +extern bt_self_component_port_output * bt_self_component_source_borrow_output_port_by_name( - struct bt_self_component_source *self_component, + bt_self_component_source *self_component, const char *name); -extern struct bt_self_component_port_output * +extern bt_self_component_port_output * bt_self_component_source_borrow_output_port_by_index( - struct bt_self_component_source *self_component, + bt_self_component_source *self_component, uint64_t index); extern enum bt_self_component_status bt_self_component_source_add_output_port( - struct bt_self_component_source *self_component, + bt_self_component_source *self_component, const char *name, void *user_data, - struct bt_self_component_port_output **self_component_port); + bt_self_component_port_output **self_component_port); #ifdef __cplusplus }