boot.library is no more, *.handler to *-handler.
[AROS.git] / compiler / alib / sendamigaguidecontext.c
blob06871f30e38bc743047063ac2e19e8e0f670c907
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Varargs version of amigaguide.library/SendAmigaGuideContextA()
6 Lang: english
7 */
9 #define AROS_TAGRETURNTYPE BOOL
10 #include <utility/tagitem.h>
12 /*****************************************************************************
14 NAME */
15 #define NO_INLINE_STDARG /* turn off inline def */
16 #include <proto/amigaguide.h>
18 BOOL SendAmigaGuideContext (
20 /* SYNOPSIS */
21 AMIGAGUIDECONTEXT handle,
22 Tag tag1,
23 ...)
25 /* FUNCTION
26 This is the varargs version of amigaguide.library/SendAmigaGuideContextA().
27 For information see amigaguide.library/SendAmigaGuideContextA().
29 INPUTS
31 RESULT
33 NOTES
35 EXAMPLE
37 BUGS
39 SEE ALSO
40 amigaguide.library/SendAmigaGuideContextA()
42 INTERNALS
44 HISTORY
46 *****************************************************************************/
48 AROS_SLOWSTACKTAGS_PRE(tag1)
49 retval = SendAmigaGuideContextA (handle, AROS_SLOWSTACKTAGS_ARG(tag1));
50 AROS_SLOWSTACKTAGS_POST
51 } /* SendAmigaGuideContext */