5 Copyright © 2004-2010, The AROS Development Team. All rights reserved.
9 #include <exec/types.h>
11 /*** Structures *************************************************************/
16 SYSSIZE
, /* Size of System partition in MBs */
17 SYSTYPE
, /* Type of filesystem on System partition [FFSIntl, SFS] */
18 SYSNAME
, /* Name of System partition */
19 WORKSIZE
, /* Size of Work partition in MBs */
20 MAXWORK
, /* Create maximum-sized Work partition */
21 WORKTYPE
, /* Type of filesystem on Work partition [FFSIntl, SFS] */
22 WORKNAME
, /* Name of Work partition */
23 WIPE
, /* Destroy all existing partitions */
24 FORCE
, /* Don't ask the user for permission */
25 QUIET
, /* Don't print anything */
26 RDB
, /* Create only RDB partitions */
27 COUNT
/* Number of arguments */
30 /*** Prototypes *************************************************************/
31 BOOL
ReadArguments(VOID
);
32 VOID
FreeArguments(VOID
);
33 IPTR
GetArgument(enum Argument arg
);
35 /*** Macros *****************************************************************/
36 #define ARG(a) GetArgument((a))