remove unused file
[AROS.git] / workbench / libs / reqtools / rtscreentofrontsafely.c
blob2a72774c533c6a2a033d36abdc54df5e4918fcd9
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang: English
7 */
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>
16 #include "general.h"
17 #include "reqtools_intern.h"
18 #include "rtfuncs.h"
20 /*****************************************************************************
22 NAME */
24 AROS_LH1(VOID, rtScreenToFrontSafely,
26 /* SYNOPSIS */
28 AROS_LHA(struct Screen *, screen, A0),
30 /* LOCATION */
32 struct ReqToolsBase *, ReqToolsBase, 23, ReqTools)
34 /* FUNCTION
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().
43 INPUTS
44 screen -- pointer to the screen
46 RESULT
47 none
49 NOTES
50 This function is for the advanced ReqTools user.
52 EXAMPLE
54 BUGS
55 none known
57 SEE ALSO
59 intuition.library/ScreenToFront()
61 INTERNALS
63 HISTORY
65 ******************************************************************************/
67 AROS_LIBFUNC_INIT
69 RTFuncs_ScreenToFrontSafely(screen);
71 AROS_LIBFUNC_EXIT
73 } /* rtScreenToFrontSafely*/