X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Kernel%2Finclude%2Fvfs_int.h;h=d4a533da8b9f9468f8dd126fcfb1c43aa0dad32a;hb=41769c02317835472d7678d3531ecfc23df8e17a;hp=f227b23d6cd42074ff5bbbb663178bd7504cf32d;hpb=8bc40333b1401d7616b225945fee53d972c2f418;p=tpg%2Facess2.git diff --git a/Kernel/include/vfs_int.h b/Kernel/include/vfs_int.h index f227b23d..d4a533da 100644 --- a/Kernel/include/vfs_int.h +++ b/Kernel/include/vfs_int.h @@ -36,12 +36,12 @@ typedef struct sVFS_Proc { } tVFS_Proc; // === GLOBALS === -extern tVFS_Mount *gMounts; +extern tVFS_Mount *gVFS_Mounts; // === PROTOTYPES === // --- OPEN.C --- -extern char *VFS_GetAbsPath(char *Path); -extern tVFS_Node *VFS_ParsePath(char *Path, char **TruePath); +extern char *VFS_GetAbsPath(const char *Path); +extern tVFS_Node *VFS_ParsePath(const char *Path, char **TruePath); extern tVFS_Handle *VFS_GetHandle(int FD); // --- ACLS.C --- extern int VFS_CheckACL(tVFS_Node *Node, Uint Permissions);