2 Copyright � 1995-2016, The AROS Development Team. All rights reserved.
5 Desc: Varargs version of BuildEasyRequestArgs() (intuition.library)
10 #include "easystruct_util.h"
11 #include <proto/intuition.h>
12 #include <proto/alib.h>
14 /*****************************************************************************
18 struct Window
* BuildEasyRequest (
21 struct Window
*RefWindow
,
22 struct EasyStruct
*easyStruct
,
42 *****************************************************************************/
44 struct Window
* retval
;
45 STRPTR format
= CreateFormatStringFromEasyStruct(easyStruct
);
47 AROS_SLOWSTACKFORMAT_PRE_USING(IDCMP
, format
);
48 retval
= BuildEasyRequestArgs(RefWindow
, easyStruct
, IDCMP
, AROS_SLOWSTACKFORMAT_ARG(format
));
49 AROS_SLOWSTACKFORMAT_POST(format
);
51 FreeFormatString(format
);
54 } /* BuildEasyRequest */