home *** CD-ROM | disk | FTP | other *** search
/ Aminet 7 / Aminet 7 - August 1995.iso / Aminet / text / hyper / ADtoHT2_1.lha / Source.lha / MyLib.lha / mui / mui_request.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-03-30  |  373 b   |  15 lines

  1. #include <proto/muimaster.h>
  2.  
  3. /************************************************************************/
  4.  
  5. LONG (MUI_Request)(Object *Application,
  6.            Object *Window,
  7.            LONGBITS Flags,
  8.            const char *Title,
  9.            const char *Gadgets,
  10.            const char *FormatString, ...)
  11.  
  12. {
  13.   return MUI_RequestA(Application,Window,Flags,Title,Gadgets,FormatString,(&FormatString)+1);
  14. }
  15.