revert between 56095 -> 55830 in arch
[AROS.git] / workbench / system / Wanderer / Tools / ExecuteCommand / executecommand.h
blob63f2031a69410dbe1b7fdfc1ccb3b3631fcd6a2c
1 #ifndef _EXECUTECOMMAND_H_
2 #define _EXECUTECOMMAND_H_
4 /*
5 Copyright © 2003, The AROS Development Team. All rights reserved.
6 $Id$
7 */
9 #include <exec/types.h>
10 #include <libraries/mui.h>
12 /*** Attributes *************************************************************/
13 /*+
14 [I..] BPTR
15 Lock on parent directory.
16 +*/
17 #define MUIA_ExecuteCommand_Parent (TAG_USER | 0x20000000)
19 /*+
20 [I..] CONST_STRPTR
21 Initial command line.
22 +*/
23 #define MUIA_ExecuteCommand_Initial (TAG_USER | 0x20000001)
25 /*** Variables **************************************************************/
26 extern struct MUI_CustomClass *ExecuteCommand_CLASS;
28 /*** Macros *****************************************************************/
29 #define ExecuteCommandObject BOOPSIOBJMACRO_START(ExecuteCommand_CLASS->mcc_Class)
31 /*** Prototypes *************************************************************/
32 BOOL ExecuteCommand_Initialize();
33 void ExecuteCommand_Deinitialize();
35 #endif /* _EXECUTECOMMAND_H_ */