X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;ds=sidebyside;f=KernelLand%2FModules%2FFilesystems%2FNTFS%2Fdir.c;h=538445b338aca5c80614b90165d43815d54b8a5e;hb=015f48988e0ff398409d71dfc692005ab439490a;hp=11cd2417e43b25ccf58e4858e52c53d8c90f3314;hpb=e4342ad9de52043cb8f820643794dc44076f9bd9;p=tpg%2Facess2.git diff --git a/KernelLand/Modules/Filesystems/NTFS/dir.c b/KernelLand/Modules/Filesystems/NTFS/dir.c index 11cd2417..538445b3 100644 --- a/KernelLand/Modules/Filesystems/NTFS/dir.c +++ b/KernelLand/Modules/Filesystems/NTFS/dir.c @@ -11,7 +11,7 @@ // === PROTOTYPES === int NTFS_ReadDir(tVFS_Node *Node, int Pos, char Dest[FILENAME_MAX]); -tVFS_Node *NTFS_FindDir(tVFS_Node *Node, const char *Name); +tVFS_Node *NTFS_FindDir(tVFS_Node *Node, const char *Name, Uint Flags); Uint64 NTFS_int_IndexLookup(Uint64 Inode, const char *IndexName, const char *Str); // === CODE === @@ -26,7 +26,7 @@ int NTFS_ReadDir(tVFS_Node *Node, int Pos, char Dest[FILENAME_MAX]) /** * \brief Get an entry from a directory by name */ -tVFS_Node *NTFS_FindDir(tVFS_Node *Node, const char *Name) +tVFS_Node *NTFS_FindDir(tVFS_Node *Node, const char *Name, Uint Flags) { tNTFS_Disk *disk = Node->ImplPtr; Uint64 inode = NTFS_int_IndexLookup(Node->Inode, "$I30", Name);