Commit of the code which was suggested by Georg as a fix for:
[cake.git] / rom / dos / dos_newcliproc.h
blobb576dda550742794f2e69579d6a6361571aa13b9
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang: English
7 */
9 #ifndef DOS_NEWCLIPROC_H
10 #define DOS_NEWCLIPROC_H
12 #include <exec/execbase.h>
13 #include <aros/asmcall.h>
15 struct CliStartupMessage
17 struct Message csm_Msg;
18 BPTR csm_ShellSeg;
19 BOOL csm_Background;
20 BOOL csm_Asynch;
21 BPTR csm_CurrentInput;
22 LONG csm_ReturnCode;
23 LONG csm_CliNumber;
26 AROS_UFP3(LONG, NewCliProc,
27 AROS_UFPA(char *,argstr,A0),
28 AROS_UFPA(ULONG,argsize,D0),
29 AROS_UFPA(struct ExecBase *,SysBase,A6));
31 #endif /* DOS_NEWCLIPROC_H */