New bitmap method SetRGBConversionFunction which can be used to
[tangerine.git] / workbench / c / Partition / args.h
blob14ee56cb038b41b357bfc1d4f9f83297506b1b6a
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 FORCE, /* Don't ask the user for permission */
17 QUIET, /* Don't print anything */
18 COUNT /* Number of arguments */
21 /*** Prototypes *************************************************************/
22 BOOL ReadArguments(VOID);
23 VOID FreeArguments(VOID);
24 IPTR GetArgument(enum Argument arg);
26 /*** Macros *****************************************************************/
27 #define ARG(a) GetArgument((a))
29 #endif /* _ARGS_H_ */