boot.library is no more, *.handler to *-handler.
[AROS.git] / compiler / alib / getdtattrs.c
blobfa1d6b85e1ca1234682cd1d7bfafbaa30070a517
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Varargs version of datatypes.library/GetDTAttrsA()
6 Lang: english
7 */
9 #define AROS_TAGRETURNTYPE ULONG
10 #include <intuition/classusr.h>
11 #include <utility/tagitem.h>
13 extern struct Library *DataTypesBase;
15 /*****************************************************************************
17 NAME */
18 #define NO_INLINE_STDARG /* turn off inline def */
19 #include <proto/datatypes.h>
21 ULONG GetDTAttrs (
23 /* SYNOPSIS */
24 Object * o,
25 Tag tag1,
26 ...)
28 /* FUNCTION
29 This is the varargs version of datatypes.library/GetDTAttrsA().
30 For information see datatypes.library/GetDTAttrsA().
32 INPUTS
34 RESULT
36 NOTES
38 EXAMPLE
40 BUGS
42 SEE ALSO
44 INTERNALS
46 HISTORY
48 *****************************************************************************/
50 AROS_SLOWSTACKTAGS_PRE(tag1)
51 retval = GetDTAttrsA (o, AROS_SLOWSTACKTAGS_ARG(tag1));
52 AROS_SLOWSTACKTAGS_POST
53 } /* GetDTAttrs */