2019-02-07 17:29:43 +00:00
|
|
|
/*
|
|
|
|
* storage_capabilities.h: storage pool capabilities XML processing
|
|
|
|
*
|
|
|
|
* Copyright (C) 2019 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library. If not, see
|
|
|
|
* <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2019-06-07 20:20:20 +00:00
|
|
|
#pragma once
|
2019-02-07 17:29:43 +00:00
|
|
|
|
2019-06-07 20:20:20 +00:00
|
|
|
#include "internal.h"
|
2019-02-07 17:29:43 +00:00
|
|
|
|
|
|
|
typedef struct _virStoragePoolCaps virStoragePoolCaps;
|
|
|
|
typedef virStoragePoolCaps *virStoragePoolCapsPtr;
|
|
|
|
struct _virStoragePoolCaps {
|
|
|
|
virObjectLockable parent;
|
|
|
|
|
|
|
|
virCapsPtr driverCaps;
|
|
|
|
};
|
|
|
|
|
2019-10-04 16:14:10 +00:00
|
|
|
G_DEFINE_AUTOPTR_CLEANUP_FUNC(virStoragePoolCaps, virObjectUnref);
|
|
|
|
|
|
|
|
|
2019-02-07 17:29:43 +00:00
|
|
|
virStoragePoolCapsPtr
|
|
|
|
virStoragePoolCapsNew(virCapsPtr driverCaps);
|
|
|
|
|
|
|
|
char *
|
2019-10-25 12:25:16 +00:00
|
|
|
virStoragePoolCapsFormat(const virStoragePoolCaps *caps);
|