2 * Acess Micro - VFS Server Ver 1
10 typedef struct sVFS_Mount {
11 struct sVFS_Mount *Next;
16 tVFS_Driver *Filesystem;
21 typedef struct sVFS_Handle {
28 typedef struct sVFS_Proc {
29 struct sVFS_Proc *Next;
35 tVFS_Handle Handles[];
39 extern tVFS_Mount *gMounts;
43 extern char *VFS_GetAbsPath(char *Path);
44 extern tVFS_Node *VFS_ParsePath(char *Path, char **TruePath);
45 extern tVFS_Handle *VFS_GetHandle(int FD);
47 extern int VFS_CheckACL(tVFS_Node *Node, Uint Permissions);