2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
6 #include "partition_support.h"
9 /*****************************************************************************
12 #include <libraries/partition.h>
14 AROS_LH1(struct PartitionAttribute
*, QueryPartitionAttrs
,
17 AROS_LHA(struct PartitionHandle
*, table
, A1
),
20 struct Library
*, PartitionBase
, 18, Partition
)
23 query partition attributes
26 ph - PartitionHandle to the table
29 list of NULL-terminated ULONGs with attributes
42 21-02-02 first version
44 *****************************************************************************/
50 struct PTFunctionTable
*handler
= table
->table
->handler
;
52 if (handler
->queryPartitionAttrs
)
53 return handler
->queryPartitionAttrs(PartitionBase
);