X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=include%2Fbabeltrace2%2Fbabeltrace.h;h=ed17a864b964b95263f0db990c6f2e1847fedba1;hb=d29378b187afb5aa5ef1086cf8d96562e3681c32;hp=739e76b3b3a1b4ae142a995a94646df3d5cff4e3;hpb=bbb7b5f044dc06e50eaa34ed3a880b34e1e7ebb8;p=babeltrace.git diff --git a/include/babeltrace2/babeltrace.h b/include/babeltrace2/babeltrace.h index 739e76b3..ed17a864 100644 --- a/include/babeltrace2/babeltrace.h +++ b/include/babeltrace2/babeltrace.h @@ -32,13 +32,24 @@ # define __BT_IN_BABELTRACE_H #endif -/* Need by some of the following included headers */ +/* Internal: needed by some of the following included headers */ #include +/* Internal: needed by some of the following included headers */ +#ifdef __cplusplus +# define __BT_UPCAST(_type, _p) static_cast<_type *>(static_cast(_p)) +# define __BT_UPCAST_CONST(_type, _p) static_cast(static_cast(_p)) +#else +# define __BT_UPCAST(_type, _p) ((_type *) (_p)) +# define __BT_UPCAST_CONST(_type, _p) ((const _type *) (_p)) +#endif + /* Core API */ #include #include #include +#include +#include #include #include #include @@ -84,6 +95,7 @@ #include #include #include +#include /* Component API */ #include @@ -100,7 +112,6 @@ /* Message iterator API */ #include -#include #include #include @@ -125,14 +136,20 @@ #include /* Graph API */ +#include +#include #include #include #include +#include +#include +#include #include #include #include /* Query executor API */ +#include #include #include @@ -144,18 +161,17 @@ #include /* Cancel private definitions */ -#undef __BT_FUNC_STATUS_OVERFLOW -#undef __BT_FUNC_STATUS_INVALID_PARAMS -#undef __BT_FUNC_STATUS_INVALID_OBJECT -#undef __BT_FUNC_STATUS_MEMORY_ERROR -#undef __BT_FUNC_STATUS_LOADING_ERROR -#undef __BT_FUNC_STATUS_ERROR -#undef __BT_FUNC_STATUS_OK +#undef __BT_FUNC_STATUS_AGAIN #undef __BT_FUNC_STATUS_END +#undef __BT_FUNC_STATUS_ERROR +#undef __BT_FUNC_STATUS_INTERRUPTED +#undef __BT_FUNC_STATUS_UNKNOWN_OBJECT +#undef __BT_FUNC_STATUS_MEMORY_ERROR #undef __BT_FUNC_STATUS_NOT_FOUND -#undef __BT_FUNC_STATUS_AGAIN -#undef __BT_FUNC_STATUS_UNSUPPORTED -#undef __BT_FUNC_STATUS_CANCELED +#undef __BT_FUNC_STATUS_OK +#undef __BT_FUNC_STATUS_OVERFLOW_ERROR #undef __BT_IN_BABELTRACE_H +#undef __BT_UPCAST +#undef __BT_UPCAST_CONST #endif /* BABELTRACE2_BABELTRACE_H */