X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=include%2Fbabeltrace%2Fgraph%2Fself-component.h;fp=include%2Fbabeltrace%2Fgraph%2Fself-component.h;h=3461eace7af5433e84ab6c2cb5b4a1d4ad5cce88;hb=b19ff26f04df428047676dd736bd7cc9473906fe;hp=a1bc8b49f0e38ffb9742a81293dfd6c974b4811a;hpb=c5b9b4417bedfbec9b5dd23b8395ccdd4eeffc44;p=babeltrace.git diff --git a/include/babeltrace/graph/self-component.h b/include/babeltrace/graph/self-component.h index a1bc8b49..3461eace 100644 --- a/include/babeltrace/graph/self-component.h +++ b/include/babeltrace/graph/self-component.h @@ -23,13 +23,13 @@ * SOFTWARE. */ +/* For bt_component, bt_self_component */ +#include + #ifdef __cplusplus extern "C" { #endif -struct bt_component; -struct bt_self_component; - enum bt_self_component_status { BT_SELF_COMPONENT_STATUS_OK = 0, BT_SELF_COMPONENT_STATUS_END = 1, @@ -40,17 +40,17 @@ enum bt_self_component_status { }; static inline -const struct bt_component *bt_self_component_as_component( - struct bt_self_component *self_component) +const bt_component *bt_self_component_as_component( + bt_self_component *self_component) { return (const void *) self_component; } extern void *bt_self_component_get_data( - const struct bt_self_component *private_component); + const bt_self_component *private_component); extern void bt_self_component_set_data( - struct bt_self_component *private_component, void *data); + bt_self_component *private_component, void *data); #ifdef __cplusplus }