In particular, don't include it into headers. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Luiz Capitulino <lcapitulino@redhat.com>
		
			
				
	
	
		
			18 lines
		
	
	
		
			480 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			480 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef QEMU_QDEV_MONITOR_H
 | 
						|
#define QEMU_QDEV_MONITOR_H
 | 
						|
 | 
						|
#include "hw/qdev-core.h"
 | 
						|
#include "qemu/typedefs.h"
 | 
						|
 | 
						|
/*** monitor commands ***/
 | 
						|
 | 
						|
void hmp_info_qtree(Monitor *mon, const QDict *qdict);
 | 
						|
void hmp_info_qdm(Monitor *mon, const QDict *qdict);
 | 
						|
void hmp_info_qom_tree(Monitor *mon, const QDict *dict);
 | 
						|
void qmp_device_add(QDict *qdict, QObject **ret_data, Error **errp);
 | 
						|
 | 
						|
int qdev_device_help(QemuOpts *opts);
 | 
						|
DeviceState *qdev_device_add(QemuOpts *opts, Error **errp);
 | 
						|
 | 
						|
#endif
 |