]> git.proxmox.com Git - qemu.git/blame - buffered_file.h
migration: move include files to include/migration/
[qemu.git] / buffered_file.h
CommitLineData
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"
caf71f86 18#include "migration/migration.h"
39b65c2e 19
796b4b0f 20QEMUFile *qemu_fopen_ops_buffered(MigrationState *migration_state);
39b65c2e
AL
21
22#endif