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
, SelectOutput
,
21 AROS_LHA(BPTR
, fh
, D1
),
24 struct DosLibrary
*, DOSBase
, 50, Dos
)
27 Sets the current output stream returned by Output() to a new
28 value. Returns the old output stream.
31 fh - New output stream.
34 Old output 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 */