Fixed binary search: no more infinite loops when vendor is unknown.
[tangerine.git] / workbench / libs / partition / partition.conf
blob3adb3293cafa6dc8edf43b9e27ea0c5ec9232895
1 ##begin config
2 basename Partition
3 libbase PartitionBase
4 libbasetype struct PartitionBase_intern
5 libbasetypeextern struct PartitionBase
6 version 1.1
7 residentpri 104
8 options noautolib, noexpunge
9 ##end config
10 ##begin cdef
11 #include <libraries/partition.h>
12 ##end cdef
13 ##begin cdefprivate
14 #include "partition_intern.h"
15 ##end cdefprivate
16 ##begin functionlist
17 struct PartitionHandle *OpenRootPartition(CONST_STRPTR Device, LONG Unit) (A1, D1)
18 void CloseRootPartition(struct PartitionHandle *ph) (A1)
19 LONG OpenPartitionTable(struct PartitionHandle *root) (A1)
20 void ClosePartitionTable(struct PartitionHandle *root) (A1)
21 LONG WritePartitionTable(struct PartitionHandle *root) (A1)
22 LONG CreatePartitionTable(struct PartitionHandle *root, ULONG type) (A1, D1)
23 struct PartitionHandle *AddPartition(struct PartitionHandle *root, struct TagItem *taglist) (A1, A2)
24 void DeletePartition(struct PartitionHandle *ph) (A1)
25 LONG GetPartitionTableAttrs(struct PartitionHandle *root, struct TagItem *taglist) (A1, A2)
26 LONG SetPartitionTableAttrs(struct PartitionHandle *root, struct TagItem *taglist) (A1, A2)
27 LONG GetPartitionAttrs(struct PartitionHandle *ph, struct TagItem *taglist) (A1, A2)
28 LONG SetPartitionAttrs(struct PartitionHandle *ph, struct TagItem *taglist) (A1, A2)
29 struct PartitionAttribute *QueryPartitionTableAttrs(struct PartitionHandle *table) (A1)
30 struct PartitionAttribute *QueryPartitionAttrs(struct PartitionHandle *table) (A1)
31 LONG DestroyPartitionTable(struct PartitionHandle *root) (A1)
32 ##end functionlist