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
, WBenchToFront
,
19 struct IntuitionBase
*, IntuitionBase
, 57, Intuition
)
22 Make the WorkBench screen the frontmost.
28 TRUE if the Workbench screen is open, FALSE else.
31 This function does not influence the position of the screen,
32 it just changes the depth-arrangement of the screens.
39 ScreenToBack(), ScreenToFront(), WBenchToBack()
43 *****************************************************************************/
47 struct Screen
*curscreen
;
49 curscreen
= GetPrivIBase(IntuitionBase
)->WorkBench
;
53 ScreenToFront ( curscreen
);