mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-25 12:18:57 +00:00
e0ee098c4a
The split between tests/test-qobject-input-visitor.c and tests/test-qobject-input-strict.c now makes less sense than ever. The next commit will take care of that. Backports commit 048abb7b20c9f822ad9d4b730bade73b3311a47a from qemu
27 lines
551 B
C
27 lines
551 B
C
/*
|
|
* Input Visitor
|
|
*
|
|
* Copyright IBM, Corp. 2011
|
|
*
|
|
* 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 QMP_INPUT_VISITOR_H
|
|
#define QMP_INPUT_VISITOR_H
|
|
|
|
#include "qapi/visitor.h"
|
|
#include "qapi/qmp/qobject.h"
|
|
|
|
typedef struct QObjectInputVisitor QObjectInputVisitor;
|
|
|
|
/*
|
|
* Return a new input visitor that converts QMP to QAPI.
|
|
*/
|
|
Visitor *qobject_input_visitor_new(QObject *obj);
|
|
|
|
#endif
|