2 Copyright © 1995-2001, 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(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
49 21-02-02 first version
51 *****************************************************************************/
57 struct PTFunctionTable
*handler
= root
->table
->handler
;
59 if (handler
->setPartitionTableAttrs
)
60 return handler
->setPartitionTableAttrs(PartitionBase
, root
, taglist
);