- Set a default PCM volume so that something can be heard when driver is
[AROS.git] / compiler / alib / drawbevelbox.c
blob5e103a6cd7b50cd5c36d0c568176282d271648a3
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 #include "alib_intern.h"
11 extern struct Library * GadToolsBase;
13 /*****************************************************************************
15 NAME */
16 #include <graphics/rastport.h>
17 #define NO_INLINE_STDARG /* turn off inline def */
18 #include <proto/gadtools.h>
20 #include <utility/tagitem.h>
22 void DrawBevelBox (
24 /* SYNOPSIS */
25 struct RastPort * rp,
26 WORD left,
27 WORD top,
28 WORD width,
29 WORD height,
30 Tag tag1,
31 ... )
33 /* FUNCTION
34 Varargs version of gadtools.library/DrawBevelBoxA().
36 INPUTS
38 RESULT
40 NOTES
42 EXAMPLE
44 BUGS
46 SEE ALSO
47 gadtools.library/DrawBevelBoxA()
49 INTERNALS
51 HISTORY
53 *****************************************************************************/
55 AROS_NR_SLOWSTACKTAGS_PRE(tag1)
56 DrawBevelBoxA (rp, left, top, width, height, AROS_SLOWSTACKTAGS_ARG(tag1));
57 AROS_NR_SLOWSTACKTAGS_POST
58 } /* DrawBevelBox */