mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-06 13:20:20 +00:00
2ac56edbf8
The code formatting storage capabilities faithfully copied the wrong use of 'const' from domain capabilities. Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
41 lines
1.2 KiB
C
41 lines
1.2 KiB
C
/*
|
|
* 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/>.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "internal.h"
|
|
|
|
typedef struct _virStoragePoolCaps virStoragePoolCaps;
|
|
typedef virStoragePoolCaps *virStoragePoolCapsPtr;
|
|
struct _virStoragePoolCaps {
|
|
virObjectLockable parent;
|
|
|
|
virCapsPtr driverCaps;
|
|
};
|
|
|
|
G_DEFINE_AUTOPTR_CLEANUP_FUNC(virStoragePoolCaps, virObjectUnref);
|
|
|
|
|
|
virStoragePoolCapsPtr
|
|
virStoragePoolCapsNew(virCapsPtr driverCaps);
|
|
|
|
char *
|
|
virStoragePoolCapsFormat(const virStoragePoolCaps *caps);
|