2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
5 Desc: Varargs version of AllocAslRequestA()
8 #define AROS_TAGRETURNTYPE APTR
9 #include <utility/tagitem.h>
12 /*****************************************************************************
15 #include <libraries/asl.h>
16 #include <proto/asl.h>
17 extern struct Library
*AslBase
;
18 #undef AllocAslRequestTags /* Get rid of the macro from inline/ */
20 APTR
AllocAslRequestTags (
28 This is the varargs version of the asl.library AllocAslRequest().
29 For information see asl.library/AllocAslRequest().
32 reqType - Type of requester to allocate.
33 tag1 - TagList of extra arguments.
42 asl.library/AllocAslRequest()
47 23-03-2000 bernie Wrote.
49 *****************************************************************************/
51 AROS_SLOWSTACKTAGS_PRE(tag1
)
53 retval
= AllocAslRequest(reqType
, AROS_SLOWSTACKTAGS_ARG(tag1
));
55 AROS_SLOWSTACKTAGS_POST
57 } /* AllocAslRequestTags */