]> git.proxmox.com Git - mirror_qemu.git/blob - buffered_file.h
Rename target_phys_addr_t to hwaddr
[mirror_qemu.git] / buffered_file.h
1 /*
2 * QEMU buffered QEMUFile
3 *
4 * Copyright IBM, Corp. 2008
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 QEMU_BUFFERED_FILE_H
15 #define QEMU_BUFFERED_FILE_H
16
17 #include "hw/hw.h"
18 #include "migration.h"
19
20 QEMUFile *qemu_fopen_ops_buffered(MigrationState *migration_state);
21
22 #endif