umka/vdisk/qcow2.h
Ivan Baravy 887b904904 Split vdisk to vdisk_raw and vdisk_qcow2
vdisk_raw got existing functionality, no new features. Qcow2 support is
yet to be implemented. Miniz was imported with that in mind.
2023-01-09 02:06:52 +00:00

25 lines
460 B
C

/*
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>
#include "../vdisk.h"
struct vdisk_qcow2 {
struct vdisk vdisk;
FILE *file;
};
struct vdisk_qcow2*
vdisk_init_qcow2(const char *fname);
#endif // VDISK_QCOW2_H_INCLUDED