mirror of
https://github.com/mii443/qemu.git
synced 2025-12-16 17:18:49 +00:00
qobject: Use 'bool' for qbool
We require a C99 compiler, so let's use 'bool' instead of 'int' when dealing with boolean values. There are few enough clients to fix them all in one pass. Signed-off-by: Eric Blake <eblake@redhat.com> Reviewed-by: Andreas Färber <afaerber@suse.de> Reviewed-by: Alberto Garcia <berto@igalia.com> Acked-by: Luiz Capitulino <lcapitulino@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com>
This commit is contained in:
committed by
Markus Armbruster
parent
0a3346f5de
commit
fc48ffc39e
@@ -14,16 +14,16 @@
|
||||
#ifndef QBOOL_H
|
||||
#define QBOOL_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdbool.h>
|
||||
#include "qapi/qmp/qobject.h"
|
||||
|
||||
typedef struct QBool {
|
||||
QObject_HEAD;
|
||||
int value;
|
||||
bool value;
|
||||
} QBool;
|
||||
|
||||
QBool *qbool_from_int(int value);
|
||||
int qbool_get_int(const QBool *qb);
|
||||
QBool *qbool_from_bool(bool value);
|
||||
bool qbool_get_bool(const QBool *qb);
|
||||
QBool *qobject_to_qbool(const QObject *obj);
|
||||
|
||||
#endif /* QBOOL_H */
|
||||
|
||||
Reference in New Issue
Block a user