2 Copyright � 1995-2013, The AROS Development Team. All rights reserved.
8 /*****************************************************************************
11 #define NO_INLINE_STDARG /* turn off inline def */
12 #include <proto/intuition.h>
13 #include <intuition/intuition.h>
14 #include <proto/exec.h>
15 #include <exec/memory.h>
19 struct Window
* window
,
20 struct EasyStruct
* easyStruct
,
40 *****************************************************************************/
46 IPTR
*argtable
= NULL
;
48 for (ptr
= easyStruct
->es_TextFormat
; *ptr
; ptr
++)
62 for (ptr
= easyStruct
->es_GadgetFormat
; *ptr
; ptr
++)
78 va_start (args
, idcmpPtr
);
82 argtable
= AllocVec(sizeof(IPTR
)*argcnt
, MEMF_PUBLIC
);
84 for (i
=0; i
< argcnt
; i
++)
85 argtable
[i
] = va_arg(args
, IPTR
);
90 rc
= EasyRequestArgs (window
, easyStruct
, idcmpPtr
, (APTR
)argtable
);