Minor fixes to comments.
[AROS.git] / rom / intuition / buildsysrequest.c
blobe2085522527095af244d9e1816650489e1809d78
1 #include "requesters.h"
3 /*****************************************************************************
5 NAME */
6 #include <proto/intuition.h>
7 #include <exec/types.h>
8 #include <intuition/intuition.h>
10 AROS_LH7(struct Window *, BuildSysRequest,
12 /* SYNOPSIS */
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),
21 /* LOCATION */
22 struct IntuitionBase *, IntuitionBase, 60, Intuition)
24 /* FUNCTION
25 Build and display a system requester.
27 INPUTS
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
35 RESULT
37 NOTES
39 EXAMPLE
41 BUGS
43 SEE ALSO
44 FreeSysRequest(), DisplayAlert(), ModifyIDCMP(), exec.library/Wait(),
45 Request(), AutoRequest(), EasyRequestArgs(), BuildEasyRequestArgs()
47 INTERNALS
49 HISTORY
51 *****************************************************************************/
53 AROS_LIBFUNC_INIT
55 return buildsysreq_intern(window, NULL, bodytext, postext, negtext, IDCMPFlags, width, height, IntuitionBase);
57 AROS_LIBFUNC_EXIT