Usermode/libaxwin4 - Handle demarshal failure
[tpg/acess2.git] / KernelLand / Modules / Storage / LVM / lvm_int.h
index f4ef3c1..a2d1f5d 100644 (file)
@@ -11,6 +11,7 @@
 #include "include/lvm.h"
 #include "lvm.h"
 #include <vfs.h>
+#include <iocache.h>
 
 typedef struct sLVM_SubVolume  tLVM_SubVolume;
 
@@ -24,17 +25,20 @@ struct sLVM_Vol
 {
        tLVM_Vol        *Next;
        
-       tVFS_Node       Node;
+       tVFS_Node       DirNode;
+       tVFS_Node       VolNode;
 
        void    *Ptr;
-       tLVM_ReadFcn    Read;
-       tLVM_WriteFcn   Write;
+       const tLVM_VolType      *Type;
 
        size_t  BlockSize;
+       Uint64  BlockCount;
        
         int    nSubVolumes;
        tLVM_SubVolume  **SubVolumes;
 
+       tIOCache        *CacheHandle;
+
        char    Name[];
 };
 
@@ -52,6 +56,10 @@ struct sLVM_SubVolume
 };
 
 extern tVFS_NodeType   gLVM_SubVolNodeType;
+extern tVFS_NodeType   gLVM_VolNodeType;
+
+extern tLVM_Vol        *gpLVM_FirstVolume;
+extern tLVM_Vol        *gpLVM_LastVolume;
 
 #endif
 

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