Refactoring: UST types public interfaces
[lttng-ust.git] / include / ust-dynamic-type.h
index e74250485ff192930f2cd9ca92d9b0d5eba42428..80a80d0995cdbe3d6e2f83b32e743043ac2055f1 100644 (file)
@@ -9,14 +9,30 @@
 
 #include <lttng/ust-events.h>
 
-#include "ust-helper.h"
+enum lttng_ust_dynamic_type {
+       LTTNG_UST_DYNAMIC_TYPE_NONE,
+       LTTNG_UST_DYNAMIC_TYPE_S8,
+       LTTNG_UST_DYNAMIC_TYPE_S16,
+       LTTNG_UST_DYNAMIC_TYPE_S32,
+       LTTNG_UST_DYNAMIC_TYPE_S64,
+       LTTNG_UST_DYNAMIC_TYPE_U8,
+       LTTNG_UST_DYNAMIC_TYPE_U16,
+       LTTNG_UST_DYNAMIC_TYPE_U32,
+       LTTNG_UST_DYNAMIC_TYPE_U64,
+       LTTNG_UST_DYNAMIC_TYPE_FLOAT,
+       LTTNG_UST_DYNAMIC_TYPE_DOUBLE,
+       LTTNG_UST_DYNAMIC_TYPE_STRING,
+       _NR_LTTNG_UST_DYNAMIC_TYPES,
+};
 
-LTTNG_HIDDEN
+__attribute__((visibility("hidden")))
 int lttng_ust_dynamic_type_choices(size_t *nr_choices,
-               const struct lttng_ust_event_field ***choices);
-LTTNG_HIDDEN
-const struct lttng_ust_event_field *lttng_ust_dynamic_type_field(int64_t value);
-LTTNG_HIDDEN
-const struct lttng_ust_event_field *lttng_ust_dynamic_type_tag_field(void);
+               struct lttng_ust_event_field ***choices);
+
+__attribute__((visibility("hidden")))
+struct lttng_ust_event_field *lttng_ust_dynamic_type_field(int64_t value);
+
+__attribute__((visibility("hidden")))
+struct lttng_ust_event_field *lttng_ust_dynamic_type_tag_field(void);
 
 #endif /* _LTTNG_UST_DYNAMIC_TYPE_H */
This page took 0.023904 seconds and 4 git commands to generate.