Use dos.library/CreateNewProc() instead of alib/CreateNewProcTags()
[tangerine.git] / compiler / alib / openwindowtags.c
blob51d1aa1a554346070efd6e2faba6e02b357d9c2c
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Open a window
6 Lang: english
7 */
9 #define AROS_TAGRETURNTYPE struct Window *
11 #include <intuition/intuitionbase.h>
12 #include "alib_intern.h"
14 extern struct IntuitionBase * IntuitionBase;
16 /*****************************************************************************
18 NAME */
19 #include <intuition/intuition.h>
20 #define NO_INLINE_STDARG /* turn off inline def */
21 #include <proto/intuition.h>
23 struct Window * OpenWindowTags (
25 /* SYNOPSIS */
26 struct NewWindow * newWindow,
27 Tag tag1,
28 ... )
30 /* FUNCTION
32 INPUTS
34 RESULT
36 NOTES
38 EXAMPLE
40 BUGS
42 SEE ALSO
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 = OpenWindowTagList (newWindow, AROS_SLOWSTACKTAGS_ARG(tag1));
54 AROS_SLOWSTACKTAGS_POST
55 } /* OpenWindowTags */