- Don't access list nodes after their memory has been freed.
[AROS.git] / workbench / tools / HDToolBox / ptclass.h
blob6228c001bebb9f176574d5fae97b55269ccedab6
1 #ifndef PTCLASS_H
2 #define PTCLASS_H
4 #include <utility/tagitem.h>
6 #define PTCT_PartitionTable (TAG_USER+1)
7 #define PTCT_ActivePartition (TAG_USER+2)
8 #define PTCT_ActiveType (TAG_USER+3)
9 #define PTCT_Selected (TAG_USER+4)
10 #define PTCT_PartitionMove (TAG_USER+5)
11 #define PTCT_Flags (TAG_USER+6)
13 #define PTCTF_NoPartitionMove (1<<0)
14 #define PTCTF_EmptySelectOnly (1<<1)
16 #define PTS_NOTHING (0)
17 #define PTS_EMPTY_AREA (1)
18 #define PTS_PARTITION (2)
20 Class *makePTClass(void);
22 #endif