Safer handling of Booleans.
[AROS.git] / workbench / libs / muimaster / staticlib / mui_request.c
blob7f273c383468e0373c60b284d23615a5f2eaae5d
1 /*
2 Copyright © 2002, The AROS Development Team.
3 All rights reserved.
5 $Id$
6 */
8 #include <stdarg.h>
10 /*****************************************************************************
12 NAME */
13 #define NO_INLINE_STDARG /* turn off inline def */
14 #include <proto/muimaster.h>
15 extern struct Library * MUIMasterBase;
17 LONG MUI_Request (
19 /* SYNOPSIS */
20 APTR app,
21 APTR win,
22 LONG flags,
23 const char *title,
24 const char *gadgets,
25 const char *format,
26 ...)
28 /* FUNCTION
30 INPUTS
32 RESULT
34 NOTES
36 EXAMPLE
38 BUGS
40 SEE ALSO
42 INTERNALS
44 HISTORY
46 *****************************************************************************/
48 return MUI_RequestA(app, win, flags, title, gadgets, format, (&format)+1);
49 } /* MUI_Request */