2 * Acess Micro - VFS Server Ver 1
10 typedef struct sVFS_Mount {
11 struct sVFS_Mount *Next;
17 tVFS_Driver *Filesystem;
22 typedef struct sVFS_Handle {
29 typedef struct sVFS_Proc {
30 struct sVFS_Proc *Next;
36 tVFS_Handle Handles[];
39 typedef struct sVFS_MMapPage {
45 extern tVFS_Mount *gVFS_Mounts;
49 extern char *VFS_GetAbsPath(const char *Path);
50 extern tVFS_Node *VFS_ParsePath(const char *Path, char **TruePath, tVFS_Mount **MountPoint);
51 extern tVFS_Handle *VFS_GetHandle(int FD);
53 extern int VFS_CheckACL(tVFS_Node *Node, Uint Permissions);
55 extern tVFS_Mount *VFS_GetMountByIdent(Uint32 MountID);