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

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