Detabbed
[AROS.git] / rom / dos / cliinitnewcli.c
blobc7966e8a18f4807607f78d8aee2c7d57be3d5df6
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang: English
7 */
8 #include "dos_intern.h"
10 #include "dos_newcliproc.h"
12 /*****************************************************************************
14 NAME */
15 #include <dos/dosextens.h>
16 #include <proto/dos.h>
18 AROS_LH1(IPTR, CliInitNewcli,
20 /* SYNOPSIS */
21 AROS_LHA(struct DosPacket *, dp, A0),
23 /* LOCATION */
24 struct DosLibrary *, DOSBase, 155, Dos)
26 /* FUNCTION
28 Set up a process to be a shell using a startup packet.
30 INPUTS
32 packet -- startup arguments that were passed to the shell
33 If NULL, defaults will be used
35 RESULT
37 NOTES
39 Called to initialize CLI private data structures, when
40 the User Shell is in interactive mode.
42 EXAMPLE
44 BUGS
46 SEE ALSO
48 CliInitRun()
50 INTERNALS
52 *****************************************************************************/
54 AROS_LIBFUNC_INIT
56 return internal_CliInitAny(dp, DOSBase);
58 AROS_LIBFUNC_EXIT
59 } /* CliInitNewcli */