]> git.proxmox.com Git - mirror_qemu.git/blame_incremental - hmp.h
qapi: Convert quit
[mirror_qemu.git] / hmp.h
... / ...
CommitLineData
1/*
2 * Human Monitor Interface
3 *
4 * Copyright IBM, Corp. 2011
5 *
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
11 *
12 */
13
14#ifndef HMP_H
15#define HMP_H
16
17#include "qemu-common.h"
18#include "qapi-types.h"
19
20void hmp_info_name(Monitor *mon);
21void hmp_info_version(Monitor *mon);
22void hmp_info_kvm(Monitor *mon);
23void hmp_info_status(Monitor *mon);
24void hmp_info_uuid(Monitor *mon);
25void hmp_info_chardev(Monitor *mon);
26void hmp_quit(Monitor *mon, const QDict *qdict);
27
28#endif