Trust uboot's device list only if it does not look suspicious.
[AROS.git] / compiler / alib / openscreentags.c
bloba7b84e862efae9959fd9bf60979a40483674fb09
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Open a screen
6 Lang: english
7 */
9 #define AROS_TAGRETURNTYPE struct Screen *
10 #include <intuition/intuitionbase.h>
11 #include "alib_intern.h"
13 extern struct IntuitionBase * IntuitionBase;
15 /*****************************************************************************
17 NAME */
18 #include <intuition/screens.h>
19 #define NO_INLINE_STDARG /* turn off inline def */
20 #include <proto/intuition.h>
22 struct Screen * OpenScreenTags (
24 /* SYNOPSIS */
25 struct NewScreen * newScreen,
26 Tag tag1,
27 ...)
29 /* FUNCTION
31 INPUTS
33 RESULT
35 NOTES
37 EXAMPLE
39 BUGS
41 SEE ALSO
42 intuition.library/OpenScreenTagList()
44 INTERNALS
46 HISTORY
47 29-10-95 digulla automatically created from
48 intuition_lib.fd and clib/intuition_protos.h
50 *****************************************************************************/
52 AROS_SLOWSTACKTAGS_PRE(tag1)
53 retval = OpenScreenTagList (newScreen, AROS_SLOWSTACKTAGS_ARG(tag1));
54 AROS_SLOWSTACKTAGS_POST
55 } /* OpenScreenTags */