mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-25 11:39:13 +00:00
bbc9bcbb44
This renders many inclusions of qapi/qmp/q*.h superfluous. They'll be dropped in the next few commits. Backports commit 9f5c734d591e26186a71f9e36d752f4798df3672 from qemu
30 lines
583 B
C
30 lines
583 B
C
/*
|
|
* QBool Module
|
|
*
|
|
* Copyright IBM, Corp. 2009
|
|
*
|
|
* Authors:
|
|
* Anthony Liguori <aliguori@us.ibm.com>
|
|
*
|
|
* This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
|
|
* See the COPYING.LIB file in the top-level directory.
|
|
*
|
|
*/
|
|
|
|
#ifndef QBOOL_H
|
|
#define QBOOL_H
|
|
|
|
#include "unicorn/platform.h"
|
|
#include "qapi/qmp/qobject.h"
|
|
|
|
struct QBool {
|
|
QObject_HEAD;
|
|
bool value;
|
|
};
|
|
|
|
QBool *qbool_from_bool(bool value);
|
|
bool qbool_get_bool(const QBool *qb);
|
|
QBool *qobject_to_qbool(const QObject *obj);
|
|
void qbool_destroy_obj(QObject *obj);
|
|
|
|
#endif /* QBOOL_H */
|