Don't call ReadArgs() if started from WB.
[tangerine.git] / compiler / alib / setrpattrs.c
blob44a5fbea0ada05bcde2d4d38a54fd079af085b8f
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Varargs version of graphics.library/SetRPAttrsA()
6 Lang: english
7 */
9 #define AROS_TAGRETURNTYPEVOID
10 #include <graphics/rastport.h>
11 #include <utility/tagitem.h>
13 /*****************************************************************************
15 NAME */
16 #define NO_INLINE_STDARG /* turn off inline def */
17 #include <proto/graphics.h>
19 void SetRPAttrs (
21 /* SYNOPSIS */
22 struct RastPort * rp,
23 Tag tag1,
24 ...)
26 /* FUNCTION
27 This is the varargs version of graphics.library/SetRPAttrsA().
28 For information see graphics.library/SetRPAttrsA().
30 INPUTS
32 RESULT
34 NOTES
36 EXAMPLE
38 BUGS
40 SEE ALSO
41 graphics/SetRPAttrsA()
43 INTERNALS
45 HISTORY
47 *****************************************************************************/
49 AROS_SLOWSTACKTAGS_PRE(tag1)
50 SetRPAttrsA (rp, AROS_SLOWSTACKTAGS_ARG(tag1));
51 AROS_SLOWSTACKTAGS_POST
52 } /* SetRPAttrs */