15 lines
454 B
C
15 lines
454 B
C
|
|
/*
|
||
|
|
* Copyright (c) 2021-2023 Oracle and/or its affiliates.
|
||
|
|
*
|
||
|
|
* This work is licensed under the terms of the GNU GPL, version 2.
|
||
|
|
* See the COPYING file in the top-level directory.
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef QEMU_MIGRATION_FILE_H
|
||
|
|
#define QEMU_MIGRATION_FILE_H
|
||
|
|
void file_start_incoming_migration(const char *filename, Error **errp);
|
||
|
|
|
||
|
|
void file_start_outgoing_migration(MigrationState *s, const char *filename,
|
||
|
|
Error **errp);
|
||
|
|
#endif
|