home *** CD-ROM | disk | FTP | other *** search
/ MACD 4 / MACD4.iso / Emulatory / AROS / intuition / endrefresh.c < prev    next >
Encoding:
C/C++ Source or Header  |  1978-03-06  |  1.3 KB  |  65 lines

  1. /*
  2.     (C) 1995-96 AROS - The Amiga Replacement OS
  3.     $Id: endrefresh.c,v 1.3 1996/11/08 11:28:01 aros Exp $
  4.     $Log: endrefresh.c,v $
  5.     Revision 1.3  1996/11/08 11:28:01  aros
  6.     All OS function use now Amiga types
  7.  
  8.     Moved intuition-driver protos to intuition_intern.h
  9.  
  10.     Revision 1.2  1996/10/24 15:51:19  aros
  11.     Use the official AROS macros over the __AROS versions.
  12.  
  13.     Revision 1.1  1996/10/21 17:06:48  aros
  14.     A couple of new functions
  15.  
  16.  
  17.     Desc:
  18.     Lang: english
  19. */
  20. #include "intuition_intern.h"
  21.  
  22. /*****************************************************************************
  23.  
  24.     NAME */
  25.     #include <clib/intuition_protos.h>
  26.  
  27.     AROS_LH2(void, EndRefresh,
  28.  
  29. /*  SYNOPSIS */
  30.     AROS_LHA(struct Window *, window, A0),
  31.     AROS_LHA(BOOL           , complete, D0),
  32.  
  33. /*  LOCATION */
  34.     struct IntuitionBase *, IntuitionBase, 61, Intuition)
  35.  
  36. /*  FUNCTION
  37.  
  38.     INPUTS
  39.  
  40.     RESULT
  41.  
  42.     NOTES
  43.  
  44.     EXAMPLE
  45.  
  46.     BUGS
  47.  
  48.     SEE ALSO
  49.  
  50.     INTERNALS
  51.  
  52.     HISTORY
  53.     29-10-95    digulla automatically created from
  54.                 intuition_lib.fd and clib/intuition_protos.h
  55.  
  56. *****************************************************************************/
  57. {
  58.     AROS_LIBFUNC_INIT
  59.     AROS_LIBBASE_EXT_DECL(struct IntuitionBase *,IntuitionBase)
  60.  
  61.     intui_EndRefresh (window, complete, IntuitionBase);
  62.  
  63.     AROS_LIBFUNC_EXIT
  64. } /* EndRefresh */
  65.