New bitmap method SetRGBConversionFunction which can be used to
[tangerine.git] / compiler / alib / getvisualinfo.c
blobb10e781ce5e1af49f8eef996ca8ba0f17e6c35bc
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Get a (private) visual info structure
6 Lang: english
7 */
9 #include <exec/types.h>
10 #define AROS_TAGRETURNTYPE APTR
12 #include "alib_intern.h"
14 extern struct Library * GadToolsBase;
16 /*****************************************************************************
18 NAME */
19 #include <intuition/screens.h>
20 #include <utility/tagitem.h>
21 #define NO_INLINE_STDARG /* turn off inline def */
22 #include <proto/gadtools.h>
24 APTR GetVisualInfo (
26 /* SYNOPSIS */
27 struct Screen * screen,
28 Tag tag1,
29 ... )
31 /* FUNCTION
32 Varargs version of gadtools.library/GetVisualInfoA().
34 INPUTS
36 RESULT
38 NOTES
40 EXAMPLE
42 BUGS
44 SEE ALSO
46 INTERNALS
48 HISTORY
50 *****************************************************************************/
52 AROS_SLOWSTACKTAGS_PRE(tag1)
53 retval = GetVisualInfoA (screen, AROS_SLOWSTACKTAGS_ARG(tag1));
54 AROS_SLOWSTACKTAGS_POST
55 } /* GetVisualInfo */