2 Copyright © 2011-2017, The AROS Development Team. All rights reserved.
6 #include "partition_support.h"
9 /*****************************************************************************
12 #include <libraries/partition.h>
14 AROS_LH1(BPTR
, LoadFileSystem
,
17 AROS_LHA(struct Node
*, handle
, A1
),
20 struct Library
*, PartitionBase
, 21, Partition
)
23 Load the specified filesystem as a DOS segment list.
26 handle - Filesystem handle obtained by FindFileSystemA()
29 DOS seglist or NULL in case of failure.
41 *****************************************************************************/
45 const struct FSFunctionTable
*handler
= ((struct FileSysHandle
*)handle
)->handler
;
47 return handler
->loadFileSystem((struct PartitionBase_intern
*)PartitionBase
, (struct FileSysHandle
*)handle
);