Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Message-Id: <20220323155743.1585078-33-marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
		
			
				
	
	
		
			29 lines
		
	
	
		
			421 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			421 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include "qemu/osdep.h"
 | 
						|
#include "monitor/monitor.h"
 | 
						|
#include "qapi/qapi-emit-events.h"
 | 
						|
 | 
						|
Monitor *monitor_cur(void)
 | 
						|
{
 | 
						|
    return NULL;
 | 
						|
}
 | 
						|
 | 
						|
Monitor *monitor_set_cur(Coroutine *co, Monitor *mon)
 | 
						|
{
 | 
						|
    return NULL;
 | 
						|
}
 | 
						|
 | 
						|
void monitor_init_qmp(Chardev *chr, bool pretty, Error **errp)
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
void qapi_event_emit(QAPIEvent event, QDict *qdict)
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
int monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
 | 
						|
{
 | 
						|
    abort();
 | 
						|
}
 | 
						|
 | 
						|
 |