3115b61932abeaa098e09450800a9a901f96d5e1
[tpg/acess2.git] / KernelLand / Modules / Storage / LVM / include / lvm.h
1 /*
2  * Acess2 Logical Volume Manager
3  * - By John Hodge (thePowersGang)
4  *
5  * lvm.h
6  * - LVM Exports
7  */
8 #ifndef _LVM__LVM_H_
9 #define _LVM__LVM_H_
10
11 #include <acess.h>
12
13 typedef int (*tLVM_ReadFcn)(void *, Uint64, size_t, void *);
14 typedef int (*tLVM_WriteFcn)(void *, Uint64, size_t, const void *);
15
16 extern int      LVM_AddVolume(const char *Name, void *Ptr, tLVM_ReadFcn Read, tLVM_WriteFcn Write);
17
18 #endif
19

UCC git Repository :: git.ucc.asn.au