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

  1. /*
  2.     (C) 1995-96 AROS - The Amiga Replacement OS
  3.     $Id: getdefaultpubscreen.c,v 1.4 1997/01/27 00:36:38 ldp Exp $
  4.     $Log: getdefaultpubscreen.c,v $
  5.     Revision 1.4  1997/01/27 00:36:38  ldp
  6.     Polish
  7.  
  8.     Revision 1.3  1996/12/10 14:00:04  aros
  9.     Moved #include into first column to allow makedepend to see it.
  10.  
  11.     Revision 1.2  1996/10/24 15:51:20  aros
  12.     Use the official AROS macros over the __AROS versions.
  13.  
  14.     Revision 1.1  1996/09/21 15:48:48  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_LH1(void, GetDefaultPubScreen,
  29.  
  30. /*  SYNOPSIS */
  31.     AROS_LHA(UBYTE *, nameBuffer, A0),
  32.  
  33. /*  LOCATION */
  34.     struct IntuitionBase *, IntuitionBase, 97, 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.     AROS_LIBFUNC_EXIT
  61. } /* GetDefaultPubScreen */
  62.