diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/qapi/util.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/qapi/util.h b/include/qapi/util.h index d7bfb30..257c600 100644 --- a/include/qapi/util.h +++ b/include/qapi/util.h @@ -11,9 +11,13 @@ #ifndef QAPI_UTIL_H #define QAPI_UTIL_H +/* QEnumLookup flags */ +#define QAPI_ENUM_DEPRECATED 1 + typedef struct QEnumLookup { const char *const *array; - int size; + const unsigned char *const flags; + const int size; } QEnumLookup; const char *qapi_enum_lookup(const QEnumLookup *lookup, int val); |