2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
9 #include <exec/types.h>
10 #include <proto/exec.h>
11 #include <proto/reqtools.h>
12 #include <proto/intuition.h>
13 #include <exec/libraries.h>
14 #include <exec/memory.h>
15 #include <aros/libcall.h>
17 #include "reqtools_intern.h"
20 /*****************************************************************************
24 AROS_LH1(VOID
, rtScreenToFrontSafely
,
28 AROS_LHA(struct Screen
*, screen
, A0
),
32 struct ReqToolsBase
*, ReqToolsBase
, 23, ReqTools
)
35 Brings the specified screen to the front of the display, but only after
36 checking it is still in the list of currently open screens.
38 This function can be used to bring a screen back to the front of the
39 display after bringing another screen to the front. If the first screen
40 closed while you where busy it is harmless to call this function, unlike
41 calling the normal ScreenToFront().
44 screen -- pointer to the screen
50 This function is for the advanced ReqTools user.
59 intuition.library/ScreenToFront()
65 ******************************************************************************/
69 RTFuncs_ScreenToFrontSafely(screen
);
73 } /* rtScreenToFrontSafely*/