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

  1. /*
  2.     (C) 1995-96 AROS - The Amiga Replacement OS
  3.     $Id: autorequest.c,v 1.5 1997/01/27 00:36:35 ldp Exp $
  4.     $Log: autorequest.c,v $
  5.     Revision 1.5  1997/01/27 00:36:35  ldp
  6.     Polish
  7.  
  8.     Revision 1.4  1996/12/10 14:00:00  aros
  9.     Moved #include into first column to allow makedepend to see it.
  10.  
  11.     Revision 1.3  1996/11/08 11:28:00  aros
  12.     All OS function use now Amiga types
  13.  
  14.     Moved intuition-driver protos to intuition_intern.h
  15.  
  16.     Revision 1.2  1996/10/24 15:51:17  aros
  17.     Use the official AROS macros over the __AROS versions.
  18.  
  19.     Revision 1.1  1996/10/21 17:06:48  aros
  20.     A couple of new functions
  21.  
  22.  
  23.     Desc:
  24.     Lang: english
  25. */
  26. #include "intuition_intern.h"
  27.  
  28. /*****************************************************************************
  29.  
  30.     NAME */
  31. #include <intuition/intuition.h>
  32. #include <proto/intuition.h>
  33.  
  34.     AROS_LH8(BOOL, AutoRequest,
  35.  
  36. /*  SYNOPSIS */
  37.     AROS_LHA(struct Window    *, window, A0),
  38.     AROS_LHA(struct IntuiText *, body, A1),
  39.     AROS_LHA(struct IntuiText *, posText, A2),
  40.     AROS_LHA(struct IntuiText *, negText, A3),
  41.     AROS_LHA(ULONG             , pFlag, D0),
  42.     AROS_LHA(ULONG             , nFlag, D1),
  43.     AROS_LHA(ULONG             , width, D2),
  44.     AROS_LHA(ULONG             , height, D3),
  45.  
  46. /*  LOCATION */
  47.     struct IntuitionBase *, IntuitionBase, 58, Intuition)
  48.  
  49. /*  FUNCTION
  50.  
  51.     INPUTS
  52.  
  53.     RESULT
  54.  
  55.     NOTES
  56.  
  57.     EXAMPLE
  58.  
  59.     BUGS
  60.  
  61.     SEE ALSO
  62.  
  63.     INTERNALS
  64.  
  65.     HISTORY
  66.     29-10-95    digulla automatically created from
  67.                 intuition_lib.fd and clib/intuition_protos.h
  68.  
  69. *****************************************************************************/
  70. {
  71.     AROS_LIBFUNC_INIT
  72.     AROS_LIBBASE_EXT_DECL(struct IntuitionBase *,IntuitionBase)
  73.  
  74.     return FALSE; /* TODO */
  75.  
  76.     AROS_LIBFUNC_EXIT
  77. } /* AutoRequest */
  78.