baf0b93e270048d10af795bb713721ad9464d0dd
[AROS.git] / rom / dos / cliinitrun.c
blobbaf0b93e270048d10af795bb713721ad9464d0dd
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"
9 #include "dos_newcliproc.h"
11 /*****************************************************************************
13 NAME */
14 #include <dos/dosextens.h>
15 #include <proto/dos.h>
17 AROS_LH1(IPTR, CliInitRun,
19 /* SYNOPSIS */
20 AROS_LHA(struct DosPacket *, dp, A0),
22 /* LOCATION */
23 struct DosLibrary *, DOSBase, 156, Dos)
25 /* FUNCTION
27 Set up a process to be a shell.
29 INPUTS
31 dp -- startup arguments specified as a packet
33 RESULT
35 NOTES
37 Called to initialize CLI private data structures, when
38 the User Shell is not interactive.
40 EXAMPLE
42 BUGS
44 SEE ALSO
46 CliInitNewcli()
48 INTERNALS
50 *****************************************************************************/
52 AROS_LIBFUNC_INIT
54 return internal_CliInitAny(dp, DOSBase);
56 AROS_LIBFUNC_EXIT
57 } /* CliInitRun */