5 Copyright © 2004-2008, 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 WORKSIZE
, /* Size of Work partition in MBs */
19 MAXWORK
, /* Create maximum-sized Work partition */
20 WORKTYPE
, /* Type of filesystem on Work partition [FFSIntl, SFS] */
21 WIPE
, /* Destroy all existing partitions */
22 FORCE
, /* Don't ask the user for permission */
23 QUIET
, /* Don't print anything */
24 COUNT
/* Number of arguments */
27 /*** Prototypes *************************************************************/
28 BOOL
ReadArguments(VOID
);
29 VOID
FreeArguments(VOID
);
30 IPTR
GetArgument(enum Argument arg
);
32 /*** Macros *****************************************************************/
33 #define ARG(a) GetArgument((a))