]>
Commit | Line | Data |
---|---|---|
39b65c2e AL |
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" | |
c7a8f0cd | 18 | #include "migration.h" |
39b65c2e | 19 | |
796b4b0f | 20 | QEMUFile *qemu_fopen_ops_buffered(MigrationState *migration_state); |
39b65c2e AL |
21 | |
22 | #endif |