2 Copyright © 1995-2017, The AROS Development Team. All rights reserved.
6 #include "partition_support.h"
14 /*****************************************************************************
17 #include <utility/tagitem.h>
18 #include <libraries/partition.h>
20 AROS_LH2(LONG
, SetPartitionTableAttrs
,
23 AROS_LHA(struct PartitionHandle
*, root
, A1
),
24 AROS_LHA(const struct TagItem
*, taglist
, A2
),
27 struct Library
*, PartitionBase
, 14, Partition
)
30 Set attributes of a partition table.
33 ph - PartitionHandle of the partition table
34 taglist - list of attributes; unknown tags are ignored
48 *****************************************************************************/
54 struct PTFunctionTable
*handler
= root
->table
->handler
;
56 if (handler
->setPartitionTableAttrs
)
57 return handler
->setPartitionTableAttrs(PartitionBase
, root
, taglist
);