]>
Commit | Line | Data |
---|---|---|
074a86fc AL |
1 | #ifndef QEMU_QDEV_MONITOR_H |
2 | #define QEMU_QDEV_MONITOR_H | |
3 | ||
4 | #include "qdev-core.h" | |
5 | #include "monitor.h" | |
6 | ||
7 | /*** monitor commands ***/ | |
8 | ||
9 | void do_info_qtree(Monitor *mon); | |
10 | void do_info_qdm(Monitor *mon); | |
11 | int do_device_add(Monitor *mon, const QDict *qdict, QObject **ret_data); | |
12 | int do_device_del(Monitor *mon, const QDict *qdict, QObject **ret_data); | |
13 | int qdev_device_help(QemuOpts *opts); | |
14 | DeviceState *qdev_device_add(QemuOpts *opts); | |
15 | ||
16 | #endif |