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

  1. /*
  2.     (C) 1995-96 AROS - The Amiga Replacement OS
  3.     $Id: windowtofront.c,v 1.5 1997/01/27 00:36:45 ldp Exp $
  4.     $Log: windowtofront.c,v $
  5.     Revision 1.5  1997/01/27 00:36:45  ldp
  6.     Polish
  7.  
  8.     Revision 1.4  1996/12/10 14:00:11  aros
  9.     Moved #include into first column to allow makedepend to see it.
  10.  
  11.     Revision 1.3  1996/11/08 11:28:05  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:25  aros
  17.     Use the official AROS macros over the __AROS versions.
  18.  
  19.     Revision 1.1  1996/10/21 17:56:24  aros
  20.     Two 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_LH1(void, WindowToFront,
  35.  
  36. /*  SYNOPSIS */
  37.     AROS_LHA(struct Window *, window, A0),
  38.  
  39. /*  LOCATION */
  40.     struct IntuitionBase *, IntuitionBase, 52, Intuition)
  41.  
  42. /*  FUNCTION
  43.     Bring a window to the front (ie. before any other window).
  44.  
  45.     INPUTS
  46.     window - Which window
  47.  
  48.     RESULT
  49.     None.
  50.  
  51.     NOTES
  52.  
  53.     EXAMPLE
  54.  
  55.     BUGS
  56.  
  57.     SEE ALSO
  58.  
  59.     INTERNALS
  60.  
  61.     HISTORY
  62.     29-10-95    digulla automatically created from
  63.                 intuition_lib.fd and clib/intuition_protos.h
  64.  
  65. *****************************************************************************/
  66. {
  67.     AROS_LIBFUNC_INIT
  68.     AROS_LIBBASE_EXT_DECL(struct IntuitionBase *,IntuitionBase)
  69.  
  70.     intui_WindowToFront (window);
  71.  
  72.     AROS_LIBFUNC_EXIT
  73. } /* WindowToFront */
  74.