X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=KernelLand%2FModules%2FUSB%2FCore%2Fmain.c;h=4b4efa360c93499f261423c6bb3b7d24eb309875;hb=015f48988e0ff398409d71dfc692005ab439490a;hp=04645507e8f0f90d5a24a5321d3b11dbeceefef4;hpb=4d184c30a3385600c0d87a2f93b4259c8c973e73;p=tpg%2Facess2.git diff --git a/KernelLand/Modules/USB/Core/main.c b/KernelLand/Modules/USB/Core/main.c index 04645507..4b4efa36 100644 --- a/KernelLand/Modules/USB/Core/main.c +++ b/KernelLand/Modules/USB/Core/main.c @@ -19,7 +19,7 @@ extern void USB_PortCtl_Init(void); int USB_Install(char **Arguments); void USB_Cleanup(void); int USB_ReadDir(tVFS_Node *Node, int Pos, char Dest[FILENAME_MAX]); -tVFS_Node *USB_FindDir(tVFS_Node *Node, const char *Name); +tVFS_Node *USB_FindDir(tVFS_Node *Node, const char *Name, Uint Flags); int USB_IOCtl(tVFS_Node *Node, int Id, void *Data); // === GLOBALS === @@ -71,7 +71,7 @@ int USB_ReadDir(tVFS_Node *Node, int Pos, char Dest[FILENAME_MAX]) * \fn tVFS_Node *USB_FindDir(tVFS_Node *Node, const char *Name) * \brief Locate an entry in the USB root */ -tVFS_Node *USB_FindDir(tVFS_Node *Node, const char *Name) +tVFS_Node *USB_FindDir(tVFS_Node *Node, const char *Name, Uint Flags) { return NULL; }