1 /*
2  * qemu_migration_paramspriv.h: private declarations for migration parameters
3  *
4  * Copyright (C) 2006-2018 Red Hat, Inc.
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library.  If not, see
18  * <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 #ifndef LIBVIRT_QEMU_MIGRATION_PARAMSPRIV_H_ALLOW
23 # error "qemu_migration_paramspriv.h may only be included by qemu_migration_params.c or test suites"
24 #endif /* LIBVIRT_QEMU_MIGRATION_PARAMSPRIV_H_ALLOW */
25 
26 #pragma once
27 
28 virJSONValue *
29 qemuMigrationParamsToJSON(qemuMigrationParams *migParams);
30 
31 qemuMigrationParams *
32 qemuMigrationParamsFromJSON(virJSONValue *params);
33 
34 virJSONValue *
35 qemuMigrationCapsToJSON(virBitmap *caps,
36                         virBitmap *states);
37