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

  1. /*
  2.     (C) 1995-96 AROS - The Amiga Replacement OS
  3.     $Id: endrefresh.c,v 1.5 1997/01/27 00:36:37 ldp Exp $
  4.     $Log: endrefresh.c,v $
  5.     Revision 1.5  1997/01/27 00:36:37  ldp
  6.     Polish
  7.  
  8.     Revision 1.4  1996/12/10 14:00:03  aros
  9.     Moved #include into first column to allow makedepend to see it.
  10.  
  11.     Revision 1.3  1996/11/08 11:28:01  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:19  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 <proto/intuition.h>
  32.  
  33.     AROS_LH2(void, EndRefresh,
  34.  
  35. /*  SYNOPSIS */
  36.     AROS_LHA(struct Window *, window, A0),
  37.     AROS_LHA(BOOL           , complete, D0),
  38.  
  39. /*  LOCATION */
  40.     struct IntuitionBase *, IntuitionBase, 61, Intuition)
  41.  
  42. /*  FUNCTION
  43.  
  44.     INPUTS
  45.  
  46.     RESULT
  47.  
  48.     NOTES
  49.  
  50.     EXAMPLE
  51.  
  52.     BUGS
  53.  
  54.     SEE ALSO
  55.  
  56.     INTERNALS
  57.  
  58.     HISTORY
  59.     29-10-95    digulla automatically created from
  60.                 intuition_lib.fd and clib/intuition_protos.h
  61.  
  62. *****************************************************************************/
  63. {
  64.     AROS_LIBFUNC_INIT
  65.     AROS_LIBBASE_EXT_DECL(struct IntuitionBase *,IntuitionBase)
  66.  
  67.     intui_EndRefresh (window, complete, IntuitionBase);
  68.  
  69.     AROS_LIBFUNC_EXIT
  70. } /* EndRefresh */
  71.