1 #include "requesters.h"
3 /*****************************************************************************
6 #include <proto/intuition.h>
7 #include <exec/types.h>
8 #include <intuition/intuition.h>
10 AROS_LH7(struct Window
*, BuildSysRequest
,
13 AROS_LHA(struct Window
* , window
, A0
),
14 AROS_LHA(struct IntuiText
*, bodytext
, A1
),
15 AROS_LHA(struct IntuiText
*, postext
, A2
),
16 AROS_LHA(struct IntuiText
*, negtext
, A3
),
17 AROS_LHA(ULONG
, IDCMPFlags
, D0
),
18 AROS_LHA(WORD
, width
, D2
),
19 AROS_LHA(WORD
, height
, D3
),
22 struct IntuitionBase
*, IntuitionBase
, 60, Intuition
)
25 Build and display a system requester.
28 window - The window in which the requester will appear
29 bodytext - The Text to be shown in the body of the requester
30 postext - The Text to be shown in the positive choice gadget
31 negtext - The Text to be shown in the negative choice gadget
32 IDCMPFlags - The IDCMP Flags for this requester
33 width, height - The dimensions of the requester
44 FreeSysRequest(), DisplayAlert(), ModifyIDCMP(), exec.library/Wait(),
45 Request(), AutoRequest(), EasyRequestArgs(), BuildEasyRequestArgs()
51 *****************************************************************************/
55 return buildsysreq_intern(window
, NULL
, bodytext
, postext
, negtext
, IDCMPFlags
, width
, height
, IntuitionBase
);