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

  1. /*
  2.     (C) 1995-96 AROS - The Amiga Replacement OS
  3.     $Id: unlockpubscreen.c,v 1.4 1997/01/27 00:36:44 ldp Exp $
  4.     $Log: unlockpubscreen.c,v $
  5.     Revision 1.4  1997/01/27 00:36:44  ldp
  6.     Polish
  7.  
  8.     Revision 1.3  1996/12/10 14:00:10  aros
  9.     Moved #include into first column to allow makedepend to see it.
  10.  
  11.     Revision 1.2  1996/10/24 15:51:25  aros
  12.     Use the official AROS macros over the __AROS versions.
  13.  
  14.     Revision 1.1  1996/09/21 15:48:47  digulla
  15.     New functions to handle Public Screens
  16.  
  17.  
  18.     Desc:
  19.     Lang: english
  20. */
  21. #include "intuition_intern.h"
  22.  
  23. /*****************************************************************************
  24.  
  25.     NAME */
  26. #include <proto/intuition.h>
  27.  
  28.     AROS_LH2(void, UnlockPubScreen,
  29.  
  30. /*  SYNOPSIS */
  31.     AROS_LHA(UBYTE         *, name, A0),
  32.     AROS_LHA(struct Screen *, screen, A1),
  33.  
  34. /*  LOCATION */
  35.     struct IntuitionBase *, IntuitionBase, 86, Intuition)
  36.  
  37. /*  FUNCTION
  38.  
  39.     INPUTS
  40.  
  41.     RESULT
  42.  
  43.     NOTES
  44.  
  45.     EXAMPLE
  46.  
  47.     BUGS
  48.  
  49.     SEE ALSO
  50.  
  51.     INTERNALS
  52.  
  53.     HISTORY
  54.     29-10-95    digulla automatically created from
  55.                 intuition_lib.fd and clib/intuition_protos.h
  56.  
  57. *****************************************************************************/
  58. {
  59.     AROS_LIBFUNC_INIT
  60.     AROS_LIBBASE_EXT_DECL(struct IntuitionBase *,IntuitionBase)
  61.     AROS_LIBFUNC_EXIT
  62. } /* UnlockPubScreen */
  63.