Upcoming patches will want to add more extensive docs for one of the new
flags so this format will make it more readable.
Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
* Since: 0.9.11
*/
typedef enum {
- VIR_DOMAIN_BLOCK_RESIZE_BYTES = 1 << 0, /* size in bytes instead of KiB (Since: 0.9.11) */
- VIR_DOMAIN_BLOCK_RESIZE_CAPACITY = 1 << 1, /* resize to full the capacity of the source (Since: 10.0.0) */
+ /* size in bytes instead of KiB (Since: 0.9.11) */
+ VIR_DOMAIN_BLOCK_RESIZE_BYTES = 1 << 0,
+
+ /* resize to full the capacity of the source (Since: 10.0.0) */
+ VIR_DOMAIN_BLOCK_RESIZE_CAPACITY = 1 << 1,
} virDomainBlockResizeFlags;
int virDomainBlockResize (virDomainPtr dom,