- Set a default PCM volume so that something can be heard when driver is
[AROS.git] / compiler / alib / bestcmodeidtags.c
blob4c15fe2bdbdabb7f7d3114d56a86b5a5c8c16690
1 /*
2 Copyright © 1995-2007, 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
42 cgfx.library/BestCModeIDTagList()
44 INTERNALS
46 HISTORY
47 11-11-2002 Gabriele Greco Wrote.
49 *****************************************************************************/
51 AROS_SLOWSTACKTAGS_PRE(tag1)
53 retval = BestCModeIDTagList(AROS_SLOWSTACKTAGS_ARG(tag1));
55 AROS_SLOWSTACKTAGS_POST
57 } /* BestCModeIDTags */