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

  1. /*
  2.     (C) 1995-96 AROS - The Amiga Replacement OS
  3.     $Id: beginrefresh.c,v 1.5 1997/01/27 00:36:36 ldp Exp $
  4.     $Log: beginrefresh.c,v $
  5.     Revision 1.5  1997/01/27 00:36:36  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 <proto/intuition.h>
  32.  
  33.     AROS_LH1(void, BeginRefresh,
  34.  
  35. /*  SYNOPSIS */
  36.     AROS_LHA(struct Window *, window, A0),
  37.  
  38. /*  LOCATION */
  39.     struct IntuitionBase *, IntuitionBase, 59, Intuition)
  40.  
  41. /*  FUNCTION
  42.  
  43.     INPUTS
  44.  
  45.     RESULT
  46.  
  47.     NOTES
  48.  
  49.     EXAMPLE
  50.  
  51.     BUGS
  52.  
  53.     SEE ALSO
  54.  
  55.     INTERNALS
  56.  
  57.     HISTORY
  58.     29-10-95    digulla automatically created from
  59.                 intuition_lib.fd and clib/intuition_protos.h
  60.  
  61. *****************************************************************************/
  62. {
  63.     AROS_LIBFUNC_INIT
  64.     AROS_LIBBASE_EXT_DECL(struct IntuitionBase *,IntuitionBase)
  65.  
  66.     intui_BeginRefresh (window, IntuitionBase);
  67.  
  68.     AROS_LIBFUNC_EXIT
  69. } /* BeginRefresh */
  70.