Update to lasso handling. Adjust scroll amount based on difference between mouse...
[AROS.git] / rom / dos / cliinitrun.c
blob63e92db43b7ac40ec2ce6f89fcd907c5190612ba
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 /*****************************************************************************
12 NAME */
13 #include <dos/dosextens.h>
14 #include <proto/dos.h>
16 AROS_LH1(IPTR, CliInitRun,
18 /* SYNOPSIS */
19 AROS_LHA(struct DosPacket *, dp, A0),
21 /* LOCATION */
22 struct DosLibrary *, DOSBase, 156, Dos)
24 /* FUNCTION
26 Set up a process to be a shell.
28 INPUTS
30 dp -- startup arguments specified as a packet
32 RESULT
34 NOTES
36 This function is obsolete for the same reasons as CliInitNewCli()
37 and should not be used.
39 EXAMPLE
41 BUGS
43 SEE ALSO
45 CliInitNewCli()
47 INTERNALS
49 *****************************************************************************/
51 AROS_LIBFUNC_INIT
53 return 0;
55 AROS_LIBFUNC_EXIT
56 } /* CliInitRun */