Some fix for scrolling with lasso.
[tangerine.git] / workbench / tools / HDToolBox / prefs.h
blob9517a5df8029c6969d041525243c9b7ff9dc028f
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 */