#include <exec/types.h>

struct Partition {
	STRPTR device;
	LONG   unit;
	LONG   flags;
	ULONG  first_block;   /* measured in 512 byte sectors */
	ULONG  num_blocks;    /* measured in 512 byte sectors */
	ULONG  res_blocks;    /* measured in blocks */
	ULONG  pre_blocks;    /* measured in blocks */
	ULONG  block_size;    /* Bytes */
	LONG   mem_type;
	LONG   dos_type;
};
