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, raw format
|
|
|
|
|
|
|
|
Copyright (C) 2023 Ivan Baravy <dunkaist@gmail.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef VDISK_RAW_H_INCLUDED
|
|
|
|
#define VDISK_RAW_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 RAW_SUFFIX ".raw"
|
|
|
|
|
2023-01-05 06:20:40 +01:00
|
|
|
struct vdisk*
|
2023-02-06 17:01:37 +01:00
|
|
|
vdisk_init_raw(const char *fname, const struct umka_io *io);
|
2023-01-04 01:15:40 +01:00
|
|
|
|
|
|
|
#endif // VDISK_RAW_H_INCLUDED
|