added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / workbench / libs / muimaster / staticlib / mui_request.c
blob933a313d420d34a797c344fc2671060bef2947f2
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 char *title,
24 char *gadgets,
25 char *format,
26 APTR param1,
27 ...)
29 /* FUNCTION
31 INPUTS
33 RESULT
35 NOTES
37 EXAMPLE
39 BUGS
41 SEE ALSO
43 INTERNALS
45 HISTORY
47 *****************************************************************************/
49 return MUI_RequestA(app, win, flags, title, gadgets, format, &param1);
50 } /* MUI_Request */