Don't call ReadArgs() if started from WB.
[tangerine.git] / compiler / alib / allocaslrequesttags.c
bloba039c44aceb8b8ed96b3673d3433b79a2587127b
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Varargs version of AllocAslRequestA()
6 Lang: english
7 */
8 #define AROS_TAGRETURNTYPE APTR
9 #include <utility/tagitem.h>
12 /*****************************************************************************
14 NAME */
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 (
22 /* SYNOPSIS */
23 ULONG reqType,
24 Tag tag1,
25 ...)
27 /* FUNCTION
28 This is the varargs version of the asl.library AllocAslRequest().
29 For information see asl.library/AllocAslRequest().
31 INPUTS
32 reqType - Type of requester to allocate.
33 tag1 - TagList of extra arguments.
35 NOTES
37 EXAMPLE
39 BUGS
41 SEE ALSO
42 locale/AllocAslRequest()
44 INTERNALS
46 HISTORY
47 23-03-2000 bernie Wrote.
49 *****************************************************************************/
51 AROS_LIBBASE_EXT_DECL(struct Library *,AslBase)
53 AROS_SLOWSTACKTAGS_PRE(tag1)
55 retval = AllocAslRequest(reqType, AROS_SLOWSTACKTAGS_ARG(tag1));
57 AROS_SLOWSTACKTAGS_POST
59 } /* AllocAslRequestTags */