revert between 56095 -> 55830 in arch
[AROS.git] / compiler / alib / workbenchcontrol.c
bloba976acc2ff028fd36209459d501e663421f461f3
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Varargs version of workbench.library/WorkbenchControlA()
6 Lang: english
7 */
9 #define AROS_TAGRETURNTYPE BOOL
10 #include <dos/bptr.h>
11 #include <utility/tagitem.h>
13 /*****************************************************************************
15 NAME */
16 #define NO_INLINE_STDARG /* turn off inline def */
17 #include <proto/workbench.h>
19 BOOL WorkbenchControl(
21 /* SYNOPSIS */
22 STRPTR name,
23 Tag tag1,
24 ...)
26 /* FUNCTION
27 This is the varargs version of workbench.library/WorkbenchControlA().
28 For information see workbench.library/WorkbenchControlA().
30 INPUTS
32 RESULT
34 NOTES
36 EXAMPLE
38 BUGS
40 SEE ALSO
41 workbench.library/WorkbenchControlA()
43 INTERNALS
45 HISTORY
47 *****************************************************************************/
49 AROS_SLOWSTACKTAGS_PRE(tag1)
50 retval = WorkbenchControlA( name, AROS_SLOWSTACKTAGS_ARG(tag1));
51 AROS_SLOWSTACKTAGS_POST
52 } /* WorkbenchControl */