Use dos.library/CreateNewProc() instead of alib/CreateNewProcTags()
[tangerine.git] / compiler / alib / openscreentags.c
blobc6448cb294a373a864d2743b8b8a2bf36e4219e0
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
43 INTERNALS
45 HISTORY
46 29-10-95 digulla automatically created from
47 intuition_lib.fd and clib/intuition_protos.h
49 *****************************************************************************/
51 AROS_SLOWSTACKTAGS_PRE(tag1)
52 retval = OpenScreenTagList (newScreen, AROS_SLOWSTACKTAGS_ARG(tag1));
53 AROS_SLOWSTACKTAGS_POST
54 } /* OpenScreenTags */