summaryrefslogtreecommitdiff
path: root/include/fieldstat/fieldstat.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/fieldstat/fieldstat.h')
-rw-r--r--include/fieldstat/fieldstat.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/fieldstat/fieldstat.h b/include/fieldstat/fieldstat.h
index 8bb5c8f..06fb0c3 100644
--- a/include/fieldstat/fieldstat.h
+++ b/include/fieldstat/fieldstat.h
@@ -7,6 +7,7 @@ extern "C"
#include <stddef.h>
#include <stdbool.h>
+#include <uuid/uuid.h>
#define FS_OK 0
#define FS_ERR_TOO_MANY_CELLS -1
@@ -36,6 +37,7 @@ enum field_type
FIELD_VALUE_INTEGER,
FIELD_VALUE_DOUBLE,
FIELD_VALUE_CSTRING,
+ FIELD_VALUE_UUID,
};
enum sampling_mode {
@@ -51,6 +53,7 @@ struct field {
long long value_longlong;
double value_double;
const char *value_str;
+ uuid_t value_uuid;
};
};