home *** CD-ROM | disk | FTP | other *** search
/ Aminet 18 / aminetcdnumber181997.iso / Aminet / misc / emu / AROSdev.lha / AROS / rom / intuition / easyrequestargs.c < prev    next >
C/C++ Source or Header  |  1997-01-27  |  1KB  |  56 lines

  1. /*
  2.     (C) 1995-96 AROS - The Amiga Replacement OS
  3.     $Id: easyrequestargs.c,v 1.3 1997/01/27 00:36:37 ldp Exp $
  4.  
  5.     Desc: Intuition function EasyRequestArgs()
  6.     Lang: english
  7. */
  8. #include "intuition_intern.h"
  9.  
  10. /*****************************************************************************
  11.  
  12.     NAME */
  13. #include <proto/intuition.h>
  14.  
  15.     AROS_LH4(LONG, EasyRequestArgs,
  16.  
  17. /*  SYNOPSIS */
  18.     AROS_LHA(struct Window     *, window, A0),
  19.     AROS_LHA(struct EasyStruct *, easyStruct, A1),
  20.     AROS_LHA(ULONG             *, idcmpPtr, A2),
  21.     AROS_LHA(APTR               , args, A3),
  22.  
  23. /*  LOCATION */
  24.     struct IntuitionBase *, IntuitionBase, 98, Intuition)
  25.  
  26. /*  FUNCTION
  27.     Not implemented. Always returns -1 (fail).
  28.  
  29.     INPUTS
  30.  
  31.     RESULT
  32.  
  33.     NOTES
  34.  
  35.     EXAMPLE
  36.  
  37.     BUGS
  38.  
  39.     SEE ALSO
  40.  
  41.     INTERNALS
  42.  
  43.     HISTORY
  44.     29-10-95    digulla automatically created from
  45.                 intuition_lib.fd and clib/intuition_protos.h
  46.  
  47. *****************************************************************************/
  48. {
  49.     AROS_LIBFUNC_INIT
  50.     AROS_LIBBASE_EXT_DECL(struct IntuitionBase *,IntuitionBase)
  51.  
  52.     return -1;
  53.  
  54.     AROS_LIBFUNC_EXIT
  55. } /* EasyRequestArgs */
  56.