2023-01-04 01:15:40 +01:00
|
|
|
/*
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
UMKa - User-Mode KolibriOS developer tools
|
|
|
|
vdisk - virtual disk, qcow2 format
|
|
|
|
|
|
|
|
Copyright (C) 2023 Ivan Baravy <dunkaist@gmail.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef VDISK_QCOW2_H_INCLUDED
|
|
|
|
#define VDISK_QCOW2_H_INCLUDED
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2023-01-18 09:29:08 +01:00
|
|
|
#include "vdisk.h"
|
2023-02-01 19:30:44 +01:00
|
|
|
#include "umkaio.h"
|
2023-01-04 01:15:40 +01:00
|
|
|
|
2023-01-04 02:24:35 +01:00
|
|
|
#define QCOW2_SUFFIX ".qcow2"
|
|
|
|
|
2023-01-05 06:20:40 +01:00
|
|
|
struct vdisk*
|
2023-01-18 09:29:08 +01:00
|
|
|
vdisk_init_qcow2(const char *fname, struct umka_io *io);
|
2023-01-04 01:15:40 +01:00
|
|
|
|
|
|
|
#endif // VDISK_QCOW2_H_INCLUDED
|