2 Copyright © 1995-2017, The AROS Development Team. All rights reserved.
6 #include "partition_support.h"
9 /* By default we have nothing here */
10 static const struct PartitionAttribute defaultPartitionTableAttrs
[] =
15 /*****************************************************************************
18 #include <libraries/partition.h>
20 AROS_LH1(const struct PartitionAttribute
*, QueryPartitionTableAttrs
,
23 AROS_LHA(struct PartitionHandle
*, table
, A1
),
26 struct Library
*, PartitionBase
, 17, Partition
)
29 Query partition table attributes.
32 ph - PartitionHandle of a partition table
35 List of NULL-terminated ULONGs with attributes.
47 *****************************************************************************/
53 struct PTFunctionTable
*handler
= table
->table
->handler
;
55 return handler
->partitionTableAttrs
;
58 return defaultPartitionTableAttrs
;