diff options
author | David Timber <mieabby@gmail.com> | 2020-01-03 03:08:19 +1100 |
---|---|---|
committer | David Timber <mieabby@gmail.com> | 2020-01-03 03:08:19 +1100 |
commit | 9a2a07861e3919ea2d8f3b4f36e2d51d7748ba9d (patch) | |
tree | 4cb2cea83cc440e67abef03e70b089369b0fecc6 /src/dvault.h | |
parent | ed809a51fdd1c313cd256301ef6f7211e8394cb1 (diff) |
checkpoint
Diffstat (limited to 'src/dvault.h')
-rw-r--r-- | src/dvault.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/dvault.h b/src/dvault.h index 71fbc5e..a548974 100644 --- a/src/dvault.h +++ b/src/dvault.h @@ -1,10 +1,11 @@ #pragma once +#include "util_ct.h" +#include "data.h" + #include <stddef.h> #include <stdbool.h> #include <stdint.h> -#include "data.h" - typedef struct prne_dvault_mask_result prne_dvault_mask_result_t; @@ -13,6 +14,7 @@ typedef enum { PRNE_DATA_TYPE_CSTR, NB_PRNE_DATA_TYPE } prne_data_type_t; +PRNE_LIMIT_ENUM(prne_data_type_t, NB_PRNE_DATA_TYPE, 0xFF); typedef enum { PRNE_DVAULT_MASK_OK, |