Small cleanup of extensions code
[AROS.git] / compiler / alib / easyrequest.c
blob60cd7c4da18316d6f06fc3edeb6c1c58e57eaa65
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <stdarg.h>
8 /*****************************************************************************
10 NAME */
11 #define NO_INLINE_STDARG /* turn off inline def */
12 #include <proto/intuition.h>
14 LONG EasyRequest (
16 /* SYNOPSIS */
17 struct Window * window,
18 struct EasyStruct * easyStruct,
19 ULONG * idcmpPtr,
20 ...)
22 /* FUNCTION
24 INPUTS
26 RESULT
28 NOTES
30 EXAMPLE
32 BUGS
34 SEE ALSO
36 INTERNALS
38 HISTORY
39 27-11-96 digulla automatically created from
40 intuition_lib.fd and clib/intuition_protos.h
42 *****************************************************************************/
44 va_list args;
45 LONG rc;
47 va_start (args, idcmpPtr);
49 rc = EasyRequestArgs (window, easyStruct, idcmpPtr, (APTR)args);
51 va_end (args);
53 return rc;
54 } /* EasyRequest */