diff options
author | Markus Armbruster <armbru@redhat.com> | 2021-10-28 12:25:15 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2021-10-29 15:56:29 +0200 |
commit | c67db1ed16ff5a7c1b186caa754e0c738aa945b8 (patch) | |
tree | 49b8efb6f3c2360b238b361ef9bbf9448b3355dd /include/qapi | |
parent | 9bafe07bc8b00ce9ba5ea6f4c590239c579d83ee (diff) |
qapi: Tools for sets of special feature flags in generated code
New enum QapiSpecialFeature enumerates the special feature flags.
New helper gen_special_features() returns code to represent a
collection of special feature flags as a bitset.
The next few commits will put them to use.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: John Snow <jsnow@redhat.com>
Message-Id: <20211028102520.747396-5-armbru@redhat.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Diffstat (limited to 'include/qapi')
-rw-r--r-- | include/qapi/util.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/qapi/util.h b/include/qapi/util.h index 257c600f99..7a8d5c7d72 100644 --- a/include/qapi/util.h +++ b/include/qapi/util.h @@ -11,6 +11,10 @@ #ifndef QAPI_UTIL_H #define QAPI_UTIL_H +typedef enum { + QAPI_DEPRECATED, +} QapiSpecialFeature; + /* QEnumLookup flags */ #define QAPI_ENUM_DEPRECATED 1 |