revert between 56095 -> 55830 in arch
[AROS.git] / compiler / alib / openwindowtags.c
blob94f6c0fd1a8847e87b91175440c71c5a676ea355
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
43 intuition.library/OpenWindowTagList()
45 INTERNALS
47 HISTORY
48 29-10-95 digulla automatically created from
49 intuition_lib.fd and clib/intuition_protos.h
51 *****************************************************************************/
53 AROS_SLOWSTACKTAGS_PRE(tag1)
54 retval = OpenWindowTagList (newWindow, AROS_SLOWSTACKTAGS_ARG(tag1));
55 AROS_SLOWSTACKTAGS_POST
56 } /* OpenWindowTags */