hmp.h (374f63f6810a2f99254cdf32af67035d951301c8) hmp.h (187c614767cdb3407bc67acf77b9b1a0d985a39d)
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/readline.h"
18
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/readline.h"
18
19void hmp_handle_error(Monitor *mon, Error **errp);
19void hmp_handle_error(Monitor *mon, Error *err);
20
21void hmp_info_name(Monitor *mon, const QDict *qdict);
22void hmp_info_version(Monitor *mon, const QDict *qdict);
23void hmp_info_kvm(Monitor *mon, const QDict *qdict);
24void hmp_info_status(Monitor *mon, const QDict *qdict);
25void hmp_info_uuid(Monitor *mon, const QDict *qdict);
26void hmp_info_chardev(Monitor *mon, const QDict *qdict);
27void hmp_info_mice(Monitor *mon, const QDict *qdict);

--- 130 unchanged lines hidden ---
20
21void hmp_info_name(Monitor *mon, const QDict *qdict);
22void hmp_info_version(Monitor *mon, const QDict *qdict);
23void hmp_info_kvm(Monitor *mon, const QDict *qdict);
24void hmp_info_status(Monitor *mon, const QDict *qdict);
25void hmp_info_uuid(Monitor *mon, const QDict *qdict);
26void hmp_info_chardev(Monitor *mon, const QDict *qdict);
27void hmp_info_mice(Monitor *mon, const QDict *qdict);

--- 130 unchanged lines hidden ---