1074a86fcSAnthony Liguori #ifndef QEMU_QDEV_MONITOR_H 2074a86fcSAnthony Liguori #define QEMU_QDEV_MONITOR_H 3074a86fcSAnthony Liguori 4074a86fcSAnthony Liguori #include "qdev-core.h" 5*83c9089eSPaolo Bonzini #include "monitor/monitor.h" 6074a86fcSAnthony Liguori 7074a86fcSAnthony Liguori /*** monitor commands ***/ 8074a86fcSAnthony Liguori 9074a86fcSAnthony Liguori void do_info_qtree(Monitor *mon); 10074a86fcSAnthony Liguori void do_info_qdm(Monitor *mon); 11074a86fcSAnthony Liguori int do_device_add(Monitor *mon, const QDict *qdict, QObject **ret_data); 12074a86fcSAnthony Liguori int do_device_del(Monitor *mon, const QDict *qdict, QObject **ret_data); 13074a86fcSAnthony Liguori int qdev_device_help(QemuOpts *opts); 14074a86fcSAnthony Liguori DeviceState *qdev_device_add(QemuOpts *opts); 15074a86fcSAnthony Liguori 16074a86fcSAnthony Liguori #endif 17