Sorting source tree a bit
[tpg/acess2.git] / KernelLand / Kernel / include / vfs_ramfs.h
diff --git a/KernelLand/Kernel/include/vfs_ramfs.h b/KernelLand/Kernel/include/vfs_ramfs.h
new file mode 100644 (file)
index 0000000..8bbc8b5
--- /dev/null
@@ -0,0 +1,20 @@
+/* 
+ * AcessMicro VFS
+ * - RAM Filesystem Coommon Structures
+ */
+#ifndef _RAMFS_H
+#define _RAMFS_H
+#include <vfs.h>
+
+typedef struct sRamFS_File {
+       struct sRamFS_File      *Next;
+       struct sRamFS_File      *Parent;
+       char    Name[32];
+       tVFS_Node       Node;
+       union {
+               struct sRamFS_File      *FirstChild;
+               char    *Bytes;
+       } Data;
+} tRamFS_File;
+
+#endif 

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