4 * Copyright Fujitsu, Inc. 2014
6 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
7 * See the COPYING.LIB file in the top-level directory.
14 typedef struct QEnumLookup
{
15 const char *const *array
;
19 const char *qapi_enum_lookup(const QEnumLookup
*lookup
, int val
);
20 int qapi_enum_parse(const QEnumLookup
*lookup
, const char *buf
,
21 int def
, Error
**errp
);
22 bool qapi_bool_parse(const char *name
, const char *value
, bool *obj
,
25 int parse_qapi_name(const char *name
, bool complete
);
28 * For any GenericList @list, insert @element at the front.
30 * Note that this macro evaluates @element exactly once, so it is safe
31 * to have side-effects with that argument.
33 #define QAPI_LIST_PREPEND(list, element) do { \
34 typeof(list) _tmp = g_malloc(sizeof(*(list))); \
35 _tmp->value = (element); \
36 _tmp->next = (list); \