- Removed unnecessary casts.
[AROS.git] / compiler / alib / bestmodeid.c
blob13f8645f7178167c62726a7b38e24792dc001176
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Varargs version of graphics.library/BestModeIDA()
6 Lang: english
7 */
8 #define AROS_TAGRETURNTYPE ULONG
9 #include <utility/tagitem.h>
11 /*****************************************************************************
13 NAME */
14 #define NO_INLINE_STDARG /* turn off inline def */
15 #include <proto/graphics.h>
17 ULONG BestModeID (
19 /* SYNOPSIS */
20 Tag tag1,
21 ...)
23 /* FUNCTION
24 This is the varargs version of graphics.library/BestModeIDA().
25 For information see graphics.library/BestModeIDA().
27 INPUTS
29 RESULT
31 NOTES
33 EXAMPLE
35 BUGS
37 SEE ALSO
38 graphics.library/BestModeIDA()
40 INTERNALS
42 HISTORY
44 *****************************************************************************/
46 AROS_SLOWSTACKTAGS_PRE(tag1)
47 retval = BestModeIDA (AROS_SLOWSTACKTAGS_ARG(tag1));
48 AROS_SLOWSTACKTAGS_POST
49 } /* BestModeID */