2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
8 #include <aros/debug.h>
10 #include <proto/exec.h>
11 #include "dos_intern.h"
13 /*****************************************************************************
16 #include <proto/dos.h>
18 AROS_LH1(BPTR
, SelectInput
,
21 AROS_LHA(BPTR
, fh
, D1
),
24 struct DosLibrary
*, DOSBase
, 49, Dos
)
27 Sets the current input stream returned by Input() to a new
28 value. Returns the old input stream.
31 fh - New input stream.
34 Old input stream handle.
46 *****************************************************************************/
52 /* Get pointer to process structure */
53 struct Process
*me
=(struct Process
*)FindTask(NULL
);
55 ASSERT_VALID_PROCESS(me
);
57 /* Nothing spectacular */