Files
umka/vdisk.h
T

30 lines
599 B
C
Raw Normal View History

2022-06-27 21:36:56 +04:00
/*
SPDX-License-Identifier: GPL-2.0-or-later
UMKa - User-Mode KolibriOS developer tools
vdisk - virtual disk
Copyright (C) 2020-2023 Ivan Baravy <dunkaist@gmail.com>
2022-06-27 21:36:56 +04:00
*/
#ifndef VDISK_H_INCLUDED
#define VDISK_H_INCLUDED
#include <inttypes.h>
#include "umka.h"
2023-01-04 00:15:40 +00:00
struct vdisk {
diskfunc_t diskfunc;
uint32_t sect_size;
uint64_t sect_cnt;
unsigned cache_size;
int adjust_cache_size;
2023-02-06 16:01:37 +00:00
const void *io;
2023-01-04 00:15:40 +00:00
};
2020-02-21 05:21:09 +03:00
2023-01-04 00:15:40 +00:00
struct vdisk*
2023-02-06 16:01:37 +00:00
vdisk_init(const char *fname, const int adjust_cache_size,
const size_t cache_size, const void *io);
2020-05-07 04:41:08 +03:00
#endif // VDISK_H_INCLUDED