4 #include "qemu-common.h"
10 extern Monitor
*cur_mon
;
11 extern Monitor
*default_mon
;
13 /* flags for monitor_init */
14 #define MONITOR_IS_DEFAULT 0x01
15 #define MONITOR_USE_READLINE 0x02
16 #define MONITOR_USE_CONTROL 0x04
17 #define MONITOR_USE_PRETTY 0x08
19 /* flags for monitor commands */
20 #define MONITOR_CMD_ASYNC 0x0001
21 #define MONITOR_CMD_USER_ONLY 0x0002
24 typedef enum MonitorEvent
{
31 QEVENT_VNC_INITIALIZED
,
32 QEVENT_VNC_DISCONNECTED
,
33 QEVENT_BLOCK_IO_ERROR
,
39 int monitor_cur_is_qmp(void);
41 void monitor_protocol_event(MonitorEvent event
, QObject
*data
);
42 void monitor_init(CharDriverState
*chr
, int flags
);
44 int monitor_suspend(Monitor
*mon
);
45 void monitor_resume(Monitor
*mon
);
47 int monitor_read_bdrv_key_start(Monitor
*mon
, BlockDriverState
*bs
,
48 BlockDriverCompletionFunc
*completion_cb
,
51 int monitor_get_fd(Monitor
*mon
, const char *fdname
);
53 void monitor_vprintf(Monitor
*mon
, const char *fmt
, va_list ap
);
54 void monitor_printf(Monitor
*mon
, const char *fmt
, ...)
55 __attribute__ ((__format__ (__printf__
, 2, 3)));
56 void monitor_print_filename(Monitor
*mon
, const char *filename
);
57 void monitor_flush(Monitor
*mon
);
59 typedef void (MonitorCompletion
)(void *opaque
, QObject
*ret_data
);
61 void monitor_set_error(Monitor
*mon
, QError
*qerror
);
63 #endif /* !MONITOR_H */