added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / workbench / c / Partition / args.h
blobfb1669331a64885af9398712ea3bed7df92af033
1 #ifndef _ARGS_H_
2 #define _ARGS_H_
4 /*
5 Copyright © 2004, The AROS Development Team. All rights reserved.
6 $Id$
7 */
9 #include <exec/types.h>
11 /*** Structures *************************************************************/
12 enum Argument
14 DEVICE,
15 UNIT,
16 SYSSIZE, /* Size of System partition in MBs */
17 WORKSIZE, /* Size of Work partition in MBs */
18 MAXWORK, /* Create maximum-sized Work partition */
19 WIPE, /* Destroy all existing partitions */
20 FORCE, /* Don't ask the user for permission */
21 QUIET, /* Don't print anything */
22 COUNT /* Number of arguments */
25 /*** Prototypes *************************************************************/
26 BOOL ReadArguments(VOID);
27 VOID FreeArguments(VOID);
28 IPTR GetArgument(enum Argument arg);
30 /*** Macros *****************************************************************/
31 #define ARG(a) GetArgument((a))
33 #endif /* _ARGS_H_ */