Fixed AutoDoc indentation, spelling, grammar.
[AROS.git] / workbench / tools / HDToolBox / prefs.h
blob2174641b62356fcd4827fcd598520a606e16efb4
1 #ifndef PREFS_H
2 #define PREFS_H
4 #include <exec/nodes.h>
5 #include <libraries/partition.h>
7 struct TableTypeNode {
8 struct Node ln;
9 struct List *typelist;
10 struct PartitionTableInfo *pti;
11 struct PartitionType defaulttype;
14 struct TypeNode {
15 struct Node ln;
16 struct PartitionType type;
19 struct TableTypeNode *findTableTypeNodeName(STRPTR);
20 struct TableTypeNode *findTableTypeNode(ULONG);
21 struct TypeNode *findPartitionType(struct PartitionType *, ULONG);
22 void LoadPrefs(STRPTR);
24 #endif /* PREFS_H */