2 Copyright © 1995-2011, The AROS Development Team. All rights reserved.
7 #include "partition_support.h"
10 /* By default we have nothing here */
11 static const struct PartitionAttribute defaultPartitionTableAttrs
[] =
16 /*****************************************************************************
19 #include <libraries/partition.h>
21 AROS_LH1(const struct PartitionAttribute
*, QueryPartitionTableAttrs
,
24 AROS_LHA(struct PartitionHandle
*, table
, A1
),
27 struct Library
*, PartitionBase
, 17, Partition
)
30 query partition table attributes
33 ph - PartitionHandle of a partition table
36 list of NULL-terminated ULONGs with attributes
49 21-02-02 first version
51 *****************************************************************************/
57 struct PTFunctionTable
*handler
= table
->table
->handler
;
59 return handler
->partitionTableAttrs
;
62 return defaultPartitionTableAttrs
;