Don't call ReadArgs() if started from WB.
[tangerine.git] / compiler / alib / drawbevelbox.c
blob04e39c41778ed7a80b4cdff1c226ae117237a422
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Draw a bevel box
6 Lang: english
7 */
9 #define AROS_TAGRETURNTYPE void
10 #define AROS_TAGRETURNTYPEVOID
12 #include "alib_intern.h"
14 extern struct Library * GadToolsBase;
16 /*****************************************************************************
18 NAME */
19 #include <graphics/rastport.h>
20 #define NO_INLINE_STDARG /* turn off inline def */
21 #include <proto/gadtools.h>
23 #include <utility/tagitem.h>
25 void DrawBevelBox (
27 /* SYNOPSIS */
28 struct RastPort * rp,
29 WORD left,
30 WORD top,
31 WORD width,
32 WORD height,
33 Tag tag1,
34 ... )
36 /* FUNCTION
37 Varargs version of gadtools.library/DrawBevelBoxA().
39 INPUTS
41 RESULT
43 NOTES
45 EXAMPLE
47 BUGS
49 SEE ALSO
51 INTERNALS
53 HISTORY
55 *****************************************************************************/
57 AROS_SLOWSTACKTAGS_PRE(tag1)
58 DrawBevelBoxA (rp, left, top, width, height, AROS_SLOWSTACKTAGS_ARG(tag1));
59 AROS_SLOWSTACKTAGS_POST
60 } /* DrawBevelBox */