2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
5 Desc: Get the filesystem handler for a process.
8 #include "dos_intern.h"
9 #include <proto/exec.h>
11 /*****************************************************************************
14 #include <dos/dosextens.h>
15 #include <proto/dos.h>
17 AROS_LH0(struct MsgPort
*, GetFileSysTask
,
23 struct DosLibrary
*, DOSBase
, 87, Dos
)
26 Return the default filesystem handler for this process.
32 The default filesystem handler for this process.
45 *****************************************************************************/
49 return BADDR(((struct Process
*)FindTask(NULL
))->pr_FileSystemTask
);
52 } /* GetFileSysTask */