Minor fixes to comments.
[AROS.git] / rom / intuition / screentoback.c
blob2b37474f6f438789ff3c9bebd89ffa2873f277ca
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 Copyright © 2001-2003, The MorphOS Development Team. All Rights Reserved.
4 $Id$
6 Move a screen behind all other screens.
7 */
9 #include "intuition_intern.h"
11 /*****************************************************************************
13 NAME */
14 #include <proto/intuition.h>
16 AROS_LH1(void, ScreenToBack,
18 /* SYNOPSIS */
19 AROS_LHA(struct Screen *, screen, A0),
21 /* LOCATION */
22 struct IntuitionBase *, IntuitionBase, 41, Intuition)
24 /* FUNCTION
25 Move a screen behind all other screens. If the screen is in a
26 group, the screen will be moved behind all other screens in the
27 group only. If the screen is the parent of a group, the whole
28 group will be moved in the back.
30 INPUTS
31 screen - Move this screen.
33 RESULT
34 You will see the screen move behind all other screens. If some
35 screen before this screen occupies the whole display, then it
36 will disappear completely. If all other screens occupy only part
37 of the display, the screen will appear behind the screens.
39 NOTES
41 EXAMPLE
43 BUGS
45 SEE ALSO
46 ScreenToFront(), ScreenDepth()
48 INTERNALS
50 HISTORY
52 *****************************************************************************/
54 AROS_LIBFUNC_INIT
56 ScreenDepth ( screen, SDEPTH_TOBACK, NULL );
58 AROS_LIBFUNC_EXIT
59 } /* ScreenToBack */