Kernel - Slight reworks to timer code
[tpg/acess2.git] / Kernel / include / vfs_ramfs.h
1 /* 
2  * AcessMicro VFS
3  * - RAM Filesystem Coommon Structures
4  */
5 #ifndef _RAMFS_H
6 #define _RAMFS_H
7 #include <vfs.h>
8
9 typedef struct sRamFS_File {
10         struct sRamFS_File      *Next;
11         struct sRamFS_File      *Parent;
12         char    Name[32];
13         tVFS_Node       Node;
14         union {
15                 struct sRamFS_File      *FirstChild;
16                 char    *Bytes;
17         } Data;
18 } tRamFS_File;
19
20 #endif 

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