Updated PCI IDs to latest snapshot.
[tangerine.git] / compiler / alib / buildeasyrequest.c
blob6e0cdc3386d1486f0af0b8fcddf5245e43c366e8
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Varargs version of BuildEasyRequestArgs() (intuition.library)
6 Lang: english
7 */
8 #include <stdarg.h>
10 /*****************************************************************************
12 NAME */
13 #define NO_INLINE_STDARG /* turn off inline def */
14 #include <proto/intuition.h>
15 #include <intuition/intuition.h>
17 struct Window * BuildEasyRequest (
19 /* SYNOPSIS */
20 struct Window * RefWindow,
21 struct EasyStruct * easyStruct,
22 ULONG IDCMP,
23 ...)
25 /* FUNCTION
27 INPUTS
29 RESULT
31 NOTES
33 EXAMPLE
35 BUGS
37 SEE ALSO
38 intuition.library/BuildEasyRequestArgs()
40 INTERNALS
42 HISTORY
44 *****************************************************************************/
46 va_list args;
47 struct Window * rc;
49 va_start (args, IDCMP);
51 rc = BuildEasyRequestArgs (RefWindow, easyStruct, IDCMP, (APTR)args);
53 va_end (args);
55 return rc;
56 } /* BuildEasyRequest */