X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=KernelLand%2FKernel%2Finclude%2Fvfs_ramfs.h;fp=KernelLand%2FKernel%2Finclude%2Fvfs_ramfs.h;h=8bbc8b58fd73003e66a8fffb4b4ec7d577d23310;hb=48743e39650eb1ef988380e9d95f27fd40d3a9ce;hp=0000000000000000000000000000000000000000;hpb=a2495c6ea4f4cab16b5d339ae511428e92e89e73;p=tpg%2Facess2.git diff --git a/KernelLand/Kernel/include/vfs_ramfs.h b/KernelLand/Kernel/include/vfs_ramfs.h new file mode 100644 index 00000000..8bbc8b58 --- /dev/null +++ b/KernelLand/Kernel/include/vfs_ramfs.h @@ -0,0 +1,20 @@ +/* + * AcessMicro VFS + * - RAM Filesystem Coommon Structures + */ +#ifndef _RAMFS_H +#define _RAMFS_H +#include + +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