2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
3 Copyright © 2001-2003, The MorphOS Development Team. All Rights Reserved.
7 #include "intuition_intern.h"
9 /*****************************************************************************
12 #include <proto/intuition.h>
14 AROS_LH0(BOOL
, WBenchToBack
,
19 struct IntuitionBase
*, IntuitionBase
, 56, Intuition
)
22 Bring the WorkBench behind all other screens.
27 TRUE if the Workbench screen is open, FALSE otherwise.
30 This function does not influence the position of the screen,
31 it just changes the depth-arrangement of the screens.
38 ScreenToBack(), ScreenToFront(), WBenchToFront()
42 *****************************************************************************/
46 struct Screen
*curscreen
;
48 curscreen
= GetPrivIBase(IntuitionBase
)->WorkBench
;
52 ScreenToBack ( curscreen
);