Minor fixes to comments.
[AROS.git] / rom / dos / selectinput.c
blobb1ab15e2903d3582442c920359a918e507a7bdfe
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang: english
7 */
8 #include <aros/debug.h>
10 #include <proto/exec.h>
11 #include "dos_intern.h"
13 /*****************************************************************************
15 NAME */
16 #include <proto/dos.h>
18 AROS_LH1(BPTR, SelectInput,
20 /* SYNOPSIS */
21 AROS_LHA(BPTR, fh, D1),
23 /* LOCATION */
24 struct DosLibrary *, DOSBase, 49, Dos)
26 /* FUNCTION
27 Sets the current input stream returned by Input() to a new
28 value. Returns the old input stream.
30 INPUTS
31 fh - New input stream.
33 RESULT
34 Old input stream handle.
36 NOTES
38 EXAMPLE
40 BUGS
42 SEE ALSO
44 INTERNALS
46 *****************************************************************************/
48 AROS_LIBFUNC_INIT
50 BPTR old;
52 /* Get pointer to process structure */
53 struct Process *me=(struct Process *)FindTask(NULL);
55 ASSERT_VALID_PROCESS(me);
57 /* Nothing spectacular */
58 old=me->pr_CIS;
59 me->pr_CIS=fh;
60 return old;
61 AROS_LIBFUNC_EXIT
62 } /* SelectInput */