- Set a default PCM volume so that something can be heard when driver is
[AROS.git] / compiler / alib / obtaininfo.c
blob0527e85652300114143b419816b844f903286f82
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Obtain information about a Bullet GlyphEngine
6 Lang: english
7 */
9 #define AROS_TAGRETURNTYPE ULONG
11 #include "alib_intern.h"
13 extern struct Library * BulletBase;
15 /*****************************************************************************
17 NAME */
19 #define NO_INLINE_STDARG /* turn off inline def */
20 #include <proto/bullet.h>
22 ULONG ObtainInfo (
24 /* SYNOPSIS */
25 struct GlyphEngine *glyphEngine,
26 Tag tag1,
27 ...)
29 /* FUNCTION
30 Obtain information about an GlyphEngine.
32 INPUTS
33 object - Obtain information about this GlyphEngine
34 tag1 - The first of a list of attribute/value-pairs. The last
35 attribute in this list must be TAG_END or TAG_DONE.
36 The value for this last attribute is not examined (ie.
37 you need not specify it).
39 RESULT
40 Bullet Error Code
42 NOTES
44 EXAMPLE
46 BUGS
48 SEE ALSO
49 bullet.library/ObtainInfoA()
51 INTERNALS
53 HISTORY
55 *****************************************************************************/
57 AROS_SLOWSTACKTAGS_PRE(tag1)
59 retval = ObtainInfoA (glyphEngine, AROS_SLOWSTACKTAGS_ARG(tag1));
61 AROS_SLOWSTACKTAGS_POST
63 } /* ObtainInfo */