Don't call ReadArgs() if started from WB.
[tangerine.git] / compiler / alib / bestcmodeidtags.c
blobc6cf6a601a2694b5d4e8093b9da26ab71f8d5390
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 ULONG
9 #include <utility/tagitem.h>
12 /*****************************************************************************
14 NAME */
15 // #include <libraries/cybergraphics.h>
16 #include <proto/cybergraphics.h>
17 extern struct Library *CyberGfxBase;
18 #undef BestCModeIDTags /* Get rid of the macro from inline/ */
20 ULONG BestCModeIDTags (
22 /* SYNOPSIS */
23 Tag tag1,
24 ...)
26 /* FUNCTION
27 This is the varargs version of the cybergraphics.library call
28 BestCModeIDTagList().
29 For more information see the documentation of
30 cybergraphics.library/BestCModeIDTagList().
32 INPUTS
33 tag1 - TagList of display requirements.
35 NOTES
37 EXAMPLE
39 BUGS
41 SEE ALSO
43 INTERNALS
45 HISTORY
46 11-11-2002 Gabriele Greco Wrote.
48 *****************************************************************************/
50 AROS_LIBBASE_EXT_DECL(struct Library *,CyberGfxBase)
52 AROS_SLOWSTACKTAGS_PRE(tag1)
54 retval = BestCModeIDTagList(AROS_SLOWSTACKTAGS_ARG(tag1));
56 AROS_SLOWSTACKTAGS_POST
58 } /* BestCModeIDTags */