mirror of
				https://git.proxmox.com/git/qemu
				synced 2025-10-31 20:36:04 +00:00 
			
		
		
		
	 796b4b0f50
			
		
	
	
		796b4b0f50
		
	
	
	
	
		
			
			Signed-off-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
		
			
				
	
	
		
			23 lines
		
	
	
		
			430 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			430 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * QEMU buffered QEMUFile
 | |
|  *
 | |
|  * Copyright IBM, Corp. 2008
 | |
|  *
 | |
|  * Authors:
 | |
|  *  Anthony Liguori   <aliguori@us.ibm.com>
 | |
|  *
 | |
|  * This work is licensed under the terms of the GNU GPL, version 2.  See
 | |
|  * the COPYING file in the top-level directory.
 | |
|  *
 | |
|  */
 | |
| 
 | |
| #ifndef QEMU_BUFFERED_FILE_H
 | |
| #define QEMU_BUFFERED_FILE_H
 | |
| 
 | |
| #include "hw/hw.h"
 | |
| #include "migration.h"
 | |
| 
 | |
| QEMUFile *qemu_fopen_ops_buffered(MigrationState *migration_state);
 | |
| 
 | |
| #endif
 |